Home > OS >  How to install nginx server configuration HTTPS certificate
How to install nginx server configuration HTTPS certificate

Time:11-05

As title, nginx how to install the HTTPS certificate, I in nginx configuration in the conf file

Server {
Listen, 443;
Server_name localhost.
SSL on;
Ssl_certificate D:/nginx - 1.7.4/conf/1 _xxxx_bundle. CRT;
Ssl_certificate_key D:/nginx-1.7.4/conf/2_xxxx.com.key;
Ssl_session_timeout 5 m;
Ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
Ssl_ciphers ALL:! ADH:! EXPORT56: - RC4 + RSA: HIGH: + MEDIUM:! EXP.
Ssl_prefer_server_ciphers on;
The location/{
root html;
The index index. HTML index. HTM;
}
}

No input after restart the HTTPS access or not, please help how to solve

CodePudding user response:

Openss installed yet??
  • Related