什么是 Nginx :
- 高性能 http 服务器
- 反向代理服务器
- 电子邮件代理服务器
- 能支持 5 万左右并发
应用场景:
反向代理配置文件:
upstream tomcats {
server localhost:8080 weight-2;
server localhost:8081;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://tomcats;
index index.html index.htm;
}
}