- 反向代理
- 负载均衡
轮询,加权轮询
iphash(Session问题,一般用Resdis做Session共享) - 动静分离
常用命令
./nginx 启动
./nginx -s stop 停止
./niginx -s quit 安全退出
./nginx -s reload 重新加载配置文件
ps aux | grep nginx 查看nginx进程
nginx.conf
rewrite 80 http -> 443 https
反向代理、负载均衡
upstream XXX {
server 127.0.0.1:8080 weight = 1;
server 127.0.0.1:8081 weight = 1;
}
server {
location / {
root html;
index index.html index.htm;
proxy_pass http://XXX;
}
}