码迷,mamicode.com
首页 > 其他好文 > 详细

ngnix 使用1--反向代理1

时间:2019-09-26 21:23:55      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:ons   serve   type   roc   load   nts   name   mime   host   

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

标签:ons   serve   type   roc   load   nts   name   mime   host   

原文地址:https://www.cnblogs.com/lshan/p/11594006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!