nginx 1.11.0实现http和https正向代理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 1.11.0实现http和https正向代理相关的知识,希望对你有一定的参考价值。

编译安装时候加上这个--with-http_ssl_module

生成ssl证书443.crt和443.key

 

 

nginx配置文件里这样写

server {
        listen       80;
        listen       443 ssl;

        server_name ~^(.*);

        ssl_certificate /usr/local/nginx/conf/keys/443.crt;
        ssl_certificate_key /usr/local/nginx/conf/keys/443.key;

     location / {
        resolver 172.16.168.2;
        proxy_pass https://$http_host$request_uri;
        proxy_set_header Host $http_host;

以上是关于nginx 1.11.0实现http和https正向代理的主要内容,如果未能解决你的问题,请参考以下文章

Nginx - 正反向代理,nginx.conf配置

Nginx实战:编译安装,在线升级,实现多域名 http和 https,自动跳转

使用 Nginx 实现 301 跳转至 https 的根域名

Nginx实现同一端口HTTP跳转HTTPS

Nginx实现HTTP强制跳转HTTPS

Nginx泛域名http默认跳转https