ngnix 使用1--反向代理1

Posted lshan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ngnix 使用1--反向代理1相关的知识,希望对你有一定的参考价值。

window 版:

下载: https://nginx.org/en/download.html

 

解压:

技术图片

 

 

 

 

配置:

#user nobody;
worker_processes 1;

events 
worker_connections 1024;



http 
include mime.types;
default_type application/octet-stream;


sendfile on;

keepalive_timeout 65;

##### 反向代理 ##### 
upstream tomcat1 
server 192.168.18.155:7016;


server 
listen 80;
server_name localhost;

location / 
proxy_pass http://tomcat1;
index index.html index.htm;




upstream tomcat2 
server 192.168.25.148:8081;

server 
listen 80;
server_name www.sea.com;

location / 
proxy_pass http://tomcat2;
index index.html index.htm;








 

以上是关于ngnix 使用1--反向代理1的主要内容,如果未能解决你的问题,请参考以下文章

ngnix 配置反向代理

Ngnix技术研究系列1-通过应用场景看Nginx的反向代理

[跨域]跨域解决方法之Ngnix反向代理

Ngnix反向代理负载均衡动静分离

ngnix反向代理后获取用户真实ip

ngnix反向代理tomcat偶尔出现请求50x.html错误