本人centos7.0,使用的是oneinstack ,网站申请了阿里云的 Symantec 免费DV ,经多次调试无法成功安装 证书,请教一下如何在oneinstack环境下正确安装 Symantec 免费DV呢?非常感谢!!!
server {
listen 80;
server_name 你的域名 你的域名;
return 301 https://你的域名$request_uri;
}
server {
listen 443 ssl http2;
ssl_certificate /usr/local/nginx/conf/ssl/你的.pem;
ssl_certificate_key /usr/local/nginx/conf/ssl/你的.key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers AESGCM:ALL:!DH:!EXPORT:!RC4:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL;
ssl_prefer_server_ciphers on;
ssl_session_timeout 10m;
ssl_session_cache builtin:1000 shared:SSL:10m;
ssl_buffer_size 1400;
add_header Strict-Transport-Security max-age=15768000;
ssl_stapling on;
ssl_stapling_verify on;
server_name 你的域名 你的域名;
access_log /data/wwwlogs/www.域名_nginx.log combined;
index index.html index.htm index.php;
include /usr/local/nginx/conf/rewrite/wordpress.conf;
root /data/wwwroot/www.;
if ($host != 你的域名) {
rewrite ^/(.*)$ https://你的域名/$1 permanent;
}
location ~ [^/]\.php(/|$) {
#fastcgi_pass remote_php_ip:9000;
fastcgi_pass unix:/dev/shm/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。