Nginx
1.正向代理和反向代理
2.负载均衡
- 轮询
- 加权轮询
- iphash:服务器不能Session共享,使用redis,固定ip打到同一个服务器上
3.动静分离
- 静态资源从nginx直接放回
4.Nginx常用命令
-
cd /usr/local/nginx/sbin/
-
./nginx
-
# 停止 ./nginx -s stop
-
#安全退出 ./nginx -s quit
-
#重新加载配置文件 ./nginx -s reload
-
#查看nginx进程 ps aux|grep nginx
5.防火墙命令
-
#开启防火墙 service firewalld start
-
#重启防火墙 service firewalld restart
-
#关闭防火墙 service firewalld stop
-
#查看端口是否开发 firewall-cmd --query-port=8080/tcp
-
#开发80端口 firewall-cmd --permanent --add-port=80/tcp
-
#移除端口 firewall-cmd --permanent --remove-port=8080/tcp
-
#重启防火墙,修改配置后 firewall-cmd --reload