相关链接:
https://www.cnblogs.com/hellokuangshen/p/14334300.html
- 什么是Nginx ?
Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。 - Nginx作用?
(1) 反向代理
(2)负载均衡
(3)动静分离
相关配置:
upstream lb{
server 127.0.0.1:8080 weight=1;
server 127.0.0.1:8081 weight=1;
}
location / {
proxy_pass http://lb;
}