How to make a website secured with https

后端 未结 7 1450
既然无缘
既然无缘 2020-12-12 11:23

I have to build a small webapp for a company to maintain their business data... Only those within the company will be using it, but we are planning to host it in public dom

相关标签:
7条回答
  • 2020-12-12 12:11

    For business data, if the data is private I would use a secured connection, otherwise a forms authentication is sufficient.

    If you do decide to use a secured connection, please note that I do not have experience with securing websites, I am just recanting off what I encountered during my own personal experience. If I am wrong in anyway, please feel free to correct me.

    What should I do to prepare my website for https. (Do I need to alter the code / Config)

    In order to enable SSL (Secure Sockets Layer) for your website, you would need to set-up a certificate, code or config is not altered.

    I have enabled SSL for an internal web-server, by using OpenSSL and ActivePerl from this online tutorial. If this is used for a larger audience (my audience was less than 10 people) and is in the public domain, I suggest seeking professional alternatives.

    Is SSL and https one and the same...

    Not exactly, but they go hand in hand! SSL ensures that data is encrypted and decrypted back and forth while you are viewing the website, https is the URI that is need to access the secure website. You will notice when you try to access http://secure.mydomain.com it displays an error message.

    Do I need to apply with someone to get some license or something.

    You would not need to obtain a license, but rather a certificate. You can look into companies that offer professional services with securing websites, such as VeriSign as an example.

    Do I need to make all my pages secured or only the login page...

    Once your certificate is enabled for mydomain.com every page that falls under *.mydomain.com will be secured.

    0 讨论(0)
提交回复
热议问题