- server {
- listen 443 ssl;
- server_name server.com;
- ssl_certificate cert.pem;
- ssl_certificate_key cert.key;
- ssl_session_cache shared:SSL:1m;
- ssl_session_timeout 5m;
- ssl_ciphers HIGH:!aNULL:!MD5;
- ssl_prefer_server_ciphers on;
- location / {
- root html_c;
- index index.php index.php5 index.html index.htm;
- }
- }
Parsed in 0.002 seconds