【WDCP-Nginx】启用ssl证书
申请到ssl证书后发觉一直没用,感觉浪费了,我的vps上装的是WDCP的面板,方法如下:当使用WDCP创建了一个一个网站后会在/www/wdlinux/nginx/conf/vhost生成对应的网址.conf先切换到目标目录= =cd /www/wdlinux/nginx/conf/vhost编辑相应网站的conf文件【以本站为例子】默认的内容如下:
·
申请到ssl证书后发觉一直没用,感觉浪费了,我的vps上装的是WDCP的面板,方法如下:
当使用WDCP创建了一个一个网站后会在/www/wdlinux/nginx/conf/vhost生成对应的网址.conf
先切换到目标目录= =
- cd /www/wdlinux/nginx/conf/vhost
编辑相应网站的conf文件【以本站为例子】
默认的内容如下:
- server {
- listen 80;
- server_name linzian.us linzian.us;
- root /www/web/pma/public_html;
- index index.html index.php index.htm;
- error_page 400 /errpage/400.html;
- error_page 403 /errpage/403.html;
- error_page 404 /errpage/404.html;
- error_page 405 /errpage/405.html;
- location ~ \.php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fcgi.conf;
- }
- }
我们只需加入:
- listen 443 ssl;
- ssl_certificate /root/linzian.us.crt;
- ssl_certificate_key /root/linzian.us.key;
即可。【目录可以自定】
修改后内容如下
- server {
- listen 80;
- listen 443 ssl;
- server_name linzian.us linzian.us;
- ssl_certificate /root/linzian.us.crt;
- ssl_certificate_key /root/linzian.us.key;
- root /www/web/pma/public_html;
- index index.html index.php index.htm;
- error_page 400 /errpage/400.html;
- error_page 403 /errpage/403.html;
- error_page 404 /errpage/404.html;
- error_page 405 /errpage/405.html;
- location ~ \.php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fcgi.conf;
- }
- }
然后保存并重启nginx
- service nginxd restart
更多推荐
已为社区贡献7条内容
所有评论(0)