博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx配置端口转发
阅读量:6095 次
发布时间:2019-06-20

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

配置负载均衡池

#Demo1负载均衡池upstream bolg_pool{    server 127.0.0.1:8081;}#Demo2负载均衡池upstream img_pool{    server 127.0.0.1:8022;}

Demo1端口转发

server {    listen 80; #拦截端口    server_name  bolg.xxxxx.com; #域名配置    access_log logs/bolg.log;    error_log logs/bolg.error;    #将所有请求转发给blog_pool池的应用处理    location / {        proxy_set_header Host $host;        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        proxy_pass http://blog_pool; #如果是ssl更改成https    }}

Demo2端口转发

server {    listen 80; #拦截端口    server_name img.xxxxx.com; #域名配置    access_log logs/img.log;    error_log logs/img.error;    #将所有请求转发给img_pool池的应用处理    location / {        proxy_set_header Host $host;        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;        proxy_pass http://img_pool;#如果是ssl更改成https    }}

转载地址:http://tswza.baihongyu.com/

你可能感兴趣的文章
Python基础班---第一部分(基础)---Python基础知识---计算机组成原理
查看>>
虚拟机VMware 9安装苹果MAC OSX 10.8图文教程
查看>>
POJ3694 Network
查看>>
微信小程序开发-框架
查看>>
redo、undo、binlog的区别
查看>>
DropDownList 控制日期控件显示格式
查看>>
RecycleView设置顶部分割线(记录一个坑)
查看>>
【设计模式系列】单例模式的7种写法
查看>>
汉字转拼音 (转)
查看>>
Machine Learning Techniques -6-Support Vector Regression
查看>>
会计基础_001
查看>>
Cordova 开发环境搭建及创建第一个app
查看>>
ajax请求拿到多条数据拼接显示在页面中
查看>>
小程序: 查看正在写的页面
查看>>
C++ 经典开源
查看>>
LayoutParams
查看>>
Chisel_LLDB调试命令
查看>>
DNS Doctoring
查看>>
(转载一篇)Windows7与ArcGIS Desktop9.3冲突问题解决(由QQ安装问题引出)(经本人验证已解决)...
查看>>
dedecms生成文档数据库崩溃 mysql daemon failed to start
查看>>