请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

正在回答

1回答

这是 https 是 nginx 配置


upstream wechatonline {
  server 127.0.0.1:3001;
}
server {
  listen 80;
  server_name wechatonline.iblack7.com;
  #rewrite ^(.*) https://$host$1 permanent;
  return 301 https://wechatonline.iblack7.com$request_uri;
}
server {
  listen 443;
  server_name wechatonline.iblack7.com; #填写绑定证书的域名
  ssl on;
  ssl_certificate /www/ssl/214680368210040.pem;
  ssl_certificate_key /www/ssl/214680368210040.key;
  ssl_session_timeout 5m;
  ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #按照这个协议配置
  ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;#按照这个套件配置
  ssl_prefer_server_ciphers on;
  if ($ssl_protocol = "") {
    rewrite ^(.*) https://$host$1 permanent;
  }
  location / {
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $http_host;
    proxy_set_header X-Nginx-Proxy true;
    proxy_pass http://wechat7online;
    proxy_redirect off;
  }
  location ~* ^.+\.(txt|js|css|ico|json) {
    root /www/wechat7online/public;
  }
  access_log  /www/nginx_logs/wechatonline.log;
}


0 回复 有任何疑惑可以回复我~
  • 老师,我是 http的,http://video.jiemart.top/      现在pm2已经启动成功,就差nginx配置啦,页面无法显示,能麻烦您帮我远程修改下吗?
    回复 有任何疑惑可以回复我~ 2018-05-17 12:33:06
  • Scott 回复 提问者 心有猛虎_细嗅蔷薇 #2
    可以微信号发我邮箱 wolf18387@qq.com,我微信上给你看看
    回复 有任何疑惑可以回复我~ 2018-05-20 10:52:20
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信