SSL(Secure Sockets Layer)证书是一种用于在Web服务器和浏览器之间建立安全连接的加密协议。它通过使用公钥和私钥加密技术,确保数据在传输过程中的机密性和完整性。未使用SSL证书的网站意味着其数据传输是明文的,容易被中间人攻击者截获和篡改。
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name example.com;
ssl_certificate /path/to/certificate.crt;
ssl_certificate_key /path/to/private.key;
location / {
root /var/www/html;
index index.html index.htm;
}
}
领取专属 10元无门槛券
手把手带您无忧上云