nginx -- 配置文件
#1.配置图片服务器
server{
listen 80;
server_name image.jt.com;
location / {
root D:/JT-SOFT/image;
}
}
#2.配置tomcat集群 默认规则: 1.轮询策略 2.权重策略 3.ip_hash
upstream tomcats{
#ip_hash;
server 127.0.0.1:8091 weight=6 down;
server 127.0.0.1:8092 weight=3;
server 127.0.0.1:8093 weight=1;
}
#backup
#ip_hash的原理 随机锁定一个进程
#down 加在后,该线程不运行
#backup 储备服务器 正常情况下不会运行
#2.配置后台服务器代理
server{
listen 80;
server_name manage.jt.com;
location / {
#代理网址
proxy_pass http://tomcats;
}
}
#最有一个为http请求的括号
}