SNI(Server Name Indication)是一种TLS/SSL扩展协议,用于在握手过程开始时告知服务器客户端希望连接的主机名称。这使得服务器可以在相同的IP地址和TCP端口上呈现多个证书,从而支持多个安全(HTTPS)网站在同一台服务器上运行。
server {
listen 443 ssl;
server_name example.com www.example.com;
ssl_certificate /path/to/example.com.crt;
ssl_certificate_key /path/to/example.com.key;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256';
ssl_prefer_server_ciphers on;
location / {
root /var/www/example.com;
index index.html index.htm;
}
}
请注意,以上信息仅供参考,实际应用中应根据具体情况进行调整。
领取专属 10元无门槛券
手把手带您无忧上云