申请到ssl证书后发觉一直没用,感觉浪费了,我的vps上装的是WDCP的面板,方法如下:

当使用WDCP创建了一个一个网站后会在/www/wdlinux/nginx/conf/vhost生成对应的网址.conf

先切换到目标目录= =

  1. cd /www/wdlinux/nginx/conf/vhost

编辑相应网站的conf文件【以本站为例子】

默认的内容如下:

  1. server {
  2. listen 80;
  3. server_name linzian.us linzian.us;
  4. root /www/web/pma/public_html;
  5. index index.html index.php index.htm;
  6. error_page 400 /errpage/400.html;
  7. error_page 403 /errpage/403.html;
  8. error_page 404 /errpage/404.html;
  9. error_page 405 /errpage/405.html;
  10. location ~ \.php$ {
  11. fastcgi_pass 127.0.0.1:9000;
  12. fastcgi_index index.php;
  13. include fcgi.conf;
  14. }
  15. }

我们只需加入:

  1. listen 443 ssl;
  2. ssl_certificate /root/linzian.us.crt;
  3. ssl_certificate_key /root/linzian.us.key;

即可。【目录可以自定】

修改后内容如下

  1. server {
  2. listen 80;
  3. listen 443 ssl;
  4. server_name linzian.us linzian.us;
  5. ssl_certificate /root/linzian.us.crt;
  6. ssl_certificate_key /root/linzian.us.key;
  7. root /www/web/pma/public_html;
  8. index index.html index.php index.htm;
  9. error_page 400 /errpage/400.html;
  10. error_page 403 /errpage/403.html;
  11. error_page 404 /errpage/404.html;
  12. error_page 405 /errpage/405.html;
  13. location ~ \.php$ {
  14. fastcgi_pass 127.0.0.1:9000;
  15. fastcgi_index index.php;
  16. include fcgi.conf;
  17. }
  18. }

然后保存并重启nginx

  1. service nginxd restart
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐