nginx反向代理(nginx/conf/nginx.conf)
#配置图片
server {
listen 80;
#网络路径
server_name image.jt.com;
location / {
#本地路径
root D:/images;
}
}
#配置前台服务器
server {
listen 80;
server_name www.jt.com;
location / {
root dist;
index index.html;
}
}
#定义tomcat集群
#负载均衡策略: 1、轮询策略
upstream tomcats {
server 127.0.0.1:8091;
server 127.0.0.1:8092;
}
#配置后台服务器
server {
listen 80;
server_name manage.jt.com;
location / {
#代理的是一个请求路径
proxy_pass http://tomcats;
}
}
hosts用于本地测试(C:/Windows/System32/drivers/etc/hosts)
#图片服务器配置
127.0.0.1 image.jt.com
#前端服务器配置
127.0.0.1 www.jt.com
#后端服务器配置
127.0.0.1 manage.jt.com
|