网站通过certbot配置好之后,只要在末尾加两行即可。
ssl_stapling on; ssl_stapling_verify on;
详细位置。
server { listen 443 ssl; server_name xx.xx.com; index index.html index.htm index.jsp; ssl_certificate server.pem;#证书的.cer文件路径 ssl_certificate_key server-key.pem;#证书的.key文件 #前面可能还有其他配置,不用管,写在最末端即可。 ssl_stapling on; ssl_stapling_verify on; }
标签:index,key,stapling,server,ssl,xx,Stapling,https,OCSP From: https://www.cnblogs.com/coding8832/p/17976148