Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it OK to design and test a secure web app without SSL?

I need to build a small web app that will ultimately need to be launched via SSL.

My question is, can I design and test it as if it was an ordinary application and only later add whatever is necessary to make it secure ? Or I have to test it over SSL right from the start.

like image 242
Wartin Avatar asked Dec 07 '22 02:12

Wartin


1 Answers

You'll be fine waiting on the SSL while you develop your app. Be careful not to hard-code any http:// urls, and I don't think you'll run into any problems for the bulk of your development. Just make sure you do plenty of testing after making the switch to the SSL before going live.

like image 173
derekerdmann Avatar answered Jan 18 '23 01:01

derekerdmann