How To Convert Http To Https Using Nginx For Local Server(self Signed Cetificate)
I am trying to convert http to https (secure) inside nginx, for that purpose I created and add self signed certificate inside nginx conf file. server { listen 80; server_name
Solution 1:
You are getting the message because you are using a self signed certificate, you need to use a SSL certificate from a trusted provider to avoid the warning. You can get a free SSL cert that is trusted by most major browsers at StartSSL. You can see all of the browsers that are supported here.
Post a Comment for "How To Convert Http To Https Using Nginx For Local Server(self Signed Cetificate)"