Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # Nginx tls.conf {{tag>nginx tls conf}} <code> ssl_protocols TLSv1 TLSv1.1 TLSv1.2; server { listen 443 ssl; server_name www.sample.com; ssl_certificate /etc/cert/tls.crt; ssl_certificate_key /etc/cert/tls.key; location / { root /usr/share/nginx/html; index index.html index.htm; } } </code> open/nginx-tls.conf.txt Last modified: 2024/10/05 06:15by 127.0.0.1