无标题文档
wdCP系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用教程) wdCDN系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用手册)
wdOS系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用教程) wdDNS系统 (介绍,功能特性,运行环境,安装说明,演示,常见问题,使用手册)
注册 发贴 提问 回复-必看必看 wddns免费智能 DNS 开通 本地或虚拟机使 用wdcp 一键包在mysql编 译时"卡住"
【300G高防】双线 无视攻击 wdcp官方技术支持/服务 阿里云8折优惠券 无敌云 腾讯云优惠中,现注册更有260代金额券赠送
返回列表 发帖
提问三步曲: 提问先看教程/FAQ索引(wdcp,wdcp_v3,一键包)及搜索,会让你更快解决问题
1 提供详细,如系统版本,wdcp版本,软件版本等及错误的详细信息,贴上论坛或截图发论坛
2 做过哪些操作或改动设置等

温馨提示:信息不详,很可能会没人理你!论坛有教程说明的,也可能没人理!因为,你懂的

[教程] 贴一下wdcp nginx的https配置文件,大家看看有没有问题,目前运行正常

本帖最后由 qushuiyouhan 于 2017-2-24 21:58 编辑

贴一下wdcp nginx的https配置文件,大家看看有没有问题,目前运行正常!
1、首先必须是有2个server 的 一个定义 80 端口 一个定义443。
2、其次,80端口 做了重定向 ,将http强制转向https:

rewrite ^(.*)$  https://$host$1 permanent;
return 301 https://$host$request_uri;

3、代码如下:
  1. server {
  2.         listen       80;
  3.         rewrite ^(.*)https://$host$1 permanent;
  4.         return 301 https://$host$request_uri;
  5.         root /www/web/xxx/public_html;
  6.         server_name www.xxx.com www.xxx.com;
  7.         index index.html index.php index.htm;
  8.         error_page  400 /errpage/400.html;
  9.         error_page  403 /errpage/403.html;
  10.         error_page  404 /errpage/404.html;
  11.         location ~ \.php$ {
  12.                 fastcgi_pass   127.0.0.1:9000;
  13.                 fastcgi_index  index.php;
  14.                 include fcgi.conf;
  15.         }
  16.         location ~ /\.ht {
  17.                 deny  all;
  18.         }
  19.         include /www/wdlinux/wdcp/rewrite/xxx.conf;
  20. }

  21.         

  22. server {
  23.         listen 443 ssl;
  24.         ssl_certificate /www/ssl/xxx.com.crt;
  25.         ssl_certificate_key /www/ssl/xxx.com.key;
  26.         ssl_session_timeout 5m;
  27.         root /www/web/sun0391/public_html;
  28.           server_name www.xxx.com www.xxx.com;
  29.         index index.html index.php index.htm;
  30.         error_page  400 /errpage/400.html;
  31.         error_page  403 /errpage/403.html;
  32.         error_page  404 /errpage/404.html;
  33.         location ~ \.php$ {
  34.                 fastcgi_pass   127.0.0.1:9000;
  35.                 fastcgi_index  index.php;
  36.                 include fcgi.conf;
  37.         }
  38.         location ~ /\.ht {
  39.                 deny  all;
  40.         }
  41.         include /www/wdlinux/wdcp/rewrite/xxx.conf;
  42. }
复制代码
391la.com

返回列表