node.js - nginx服务器下使用https,该怎么配置nodejs?
大家讲道理
大家讲道理 2017-04-17 14:57:56
0
3
680

自己在startssl上申请了证书,打算让网站支持https

用的是nginx代理,然后转发到nodejs

现在nginx配置成https了也显示成功了

想问nodejs用不用改成https 还是用以前的http就行?

我试着改成https不成功:提示安全证书有问题Your connection is not private

nginx相关代码:

   upstream nodejs {
                server 127.0.0.1:8090;
        }

        server {
                root /usr/share/nginx/myblog/public;
                #tryfiles $uri $uri/index.html @express;
                listen 443 ssl;
                ssl on;
                server_name tempwrite.msocca.com sxgift.cn my.sxgift.cn 10000h.top;

                ssl_certificate  /etc/nginx/conf.d/ssl/1_www.10000h.top_bundle.crt;
                ssl_certificate_key   /etc/nginx/conf.d/ssl/ssl_ca.key;

                ssl_session_timeout 5m;


                location / {
                  proxy_pass http://nodejs;
                }
                location ~.*\.(ico|jpe?g|png)$ {
                  expires 2d;
                }

        }
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(3)
刘奇

nginx部署ssl的話,nodejs不需要做任何更改。

你上面配置了那麼多server_name, 但是看證書檔案是10000h.top子網域的一個證書,你的server_name完全沒有一個與這個憑證相符的網域名稱。

猜了一下,能配對憑證並且存取正常的網域是:https://www.10000h.top/

大家讲道理

ssl on 後 443後面不用加ssl了

伊谢尔伦

遇到相同的問題。本地windows nodejs(https)+443+host映射,和 本地windows+nginx+433+nodejs(http) 都沒問題。但是centos 上 nginx+433+nodejs(http),就不行了~目前也在查找方案中。 。 。 。

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板