nginx环境,wordpress站点,根据腾讯云提供证书安装步骤,如何操作?
我给你个完整的配置,你看着修改。前提是你已经安装好了相关模块。如果没有,你就增加ssl模块即可。
yum -y install openssl openssl-devel
先 /usr/local/nginx/sbin/nginx -V 查看编译安装的模块 然后请根据nginx -V 后添加下面这段代码,编译:
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
配置好下面文件,记得重启 nginx
server {
listen 80;
listen 443 ssl http2;
ssl_certificate /usr/local/nginx/conf/ssl/www.aluoke.com.crt; #这是crt的存放位置
ssl_certificate_key /usr/local/nginx/conf/ssl/www.aluoke.com.key;#这是key的存放位置
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:EECDH+3DES:RSA+3DES:!MD5;
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 www.aluoke.com;
access_log /data/wwwlogs/www.aluoke.com_nginx.log combined;
index index.html index.htm index.php;
root /data/wwwroot/www.aluoke.com;
if ($ssl_protocol = "") { return 301 https://$host$request_uri; }
include /usr/local/nginx/conf/rewrite/wordpress.conf;
#error_page 404 /404.html;
#error_page 502 /502.html;
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|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
}
可以参考这篇教程:【腾讯云的1001种玩法】个人网站如何开启HTTPS?非常适合新手