如何在Windows中使用NGINX为节点js配置HTTPS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Windows中使用NGINX为节点js配置HTTPS相关的知识,希望对你有一定的参考价值。

我必须写一些配置代码,但它不起作用。所以我做了什么来解决这个问题

   server {
  listen       3000;
  listen       443 ssl;
  server_name  localhost;

        ssl_certificate  /nginx-1.15.12/ssl/server.crt; // own certificate
        ssl_certificate_key /nginx-1.15.12/ssl/server.key; //own privatekey
        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;

        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;

  location / {
    proxy_pass https://10.0.0.4:3000;  //my local IP with node js running port number
    proxy_http_version 1.1;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection 'upgrade';
    proxy_set_header Host $host;
    proxy_cache_bypass $http_upgrade;
  }

  location /public {
    root C:Program-FilesiisnodewwwRSRK_BETA; // path of my node js application
  }

}

我想运行HTTPS

答案
server {
    listen 443 ssl;   
    server_name localhost;
    ssl_certificate     /path/to/cert-storage/cert-self-signed.com.crt;
    ssl_certificate_key /path/to/cert-storage/cert-self-signed.com.key;    
... 
    } 

}

我正在Linux上运行Node 10 + NGINX。我不确定操作系统是否应该对NGINX本身产生影响。这就是我所拥有的,除了location设置,它的工作原理。

以上是关于如何在Windows中使用NGINX为节点js配置HTTPS的主要内容,如果未能解决你的问题,请参考以下文章

Nginx使用

windows服务器nginx配置 使用proxy_pass windows server2008 配置vue与python后端 端口放行

如何在Windows上配置并运行Nginx

在Server2003上配置nginx反向代理nodejs。

如何在windows上配置并运行Nginx

如何在Windows上配置并运行Nginx