博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx反向代理配置
阅读量:4950 次
发布时间:2019-06-11

本文共 1711 字,大约阅读时间需要 5 分钟。

80端口反向代理配置:

server {        listen       80 ;        server_name  xx.abc.com;        root         /usr/share/nginx/html;        include /etc/nginx/default.d/*.conf;        location / {          proxy_set_header X-Real-IP $remote_addr;          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;          proxy_set_header Host $http_host;          proxy_set_header X-NginX-Proxy true;          proxy_pass http://127.0.0.1:8082;          proxy_redirect off;          proxy_http_version 1.1;          proxy_set_header Upgrade $http_upgrade;          proxy_set_header Connection "upgrade";          proxy_redirect off;          proxy_set_header X-Forwarded-Proto $scheme;        }    }

 

443端口反向代理配置:

server {    listen       443;    server_name  xcx.abc.com;    ssl on;    root html;    index index.html index.htm;    ssl_certificate      "/etc/nginx/cert_xcx/214448276670131.pem";    ssl_certificate_key  "/etc/nginx/cert_xcx/214448276670131.key";    ssl_session_cache    shared:SSL:1m;    ssl_session_timeout  5m;    ssl_ciphers  ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;    ssl_prefer_server_ciphers  on;    location / {      proxy_set_header X-Real-IP $remote_addr;      proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;      proxy_set_header Host $http_host;      proxy_set_header X-NginX-Proxy true;      proxy_pass http://127.0.0.1:8080;      proxy_redirect off;      proxy_http_version 1.1;      proxy_set_header Upgrade $http_upgrade;      proxy_set_header Connection "upgrade";      proxy_redirect off;      proxy_set_header X-Forwarded-Proto $scheme;     }  }

 

转载于:https://www.cnblogs.com/beyang/p/9505249.html

你可能感兴趣的文章
Angular 2 学习笔记(一)
查看>>
Microsoft Visual Studio 2010 注册码
查看>>
circos pipeline
查看>>
Dapper官方教程翻译3:Dapper方法之Query(转)
查看>>
JVM 垃圾回收机制
查看>>
工作中常用到的命令
查看>>
[入门基础]初级免杀班
查看>>
rails delegate机制
查看>>
FormsAuthentication类
查看>>
WebSocket是什么原理,为什么可以实现持久连接
查看>>
局域网电脑禁止ping通的解决方法
查看>>
用PowerShell部署WSP
查看>>
课程作业02.2
查看>>
CYQ.Data 数据框架 数据库分页方式及存储过程[SQL2000/SQL2005/Oracle]
查看>>
电子商务网站SQL注入项目实战一例
查看>>
JMeter学习(一)工具简单介绍
查看>>
Wix学习整理(5)——安装时填写注册表
查看>>
数据分析步骤
查看>>
【转】如何在 Windows 中执行干净启动
查看>>
MyBatis 缓存问题 session
查看>>