nginx转发请求的好处:
● 反向代理:将来自客户端的请求转发到后端的应用服务器上,提高系统的可用性和扩展性。
● 负载均衡:将请求分发到多个后端服务器上,实现负载均衡,提高系统的性能和可靠性。
● 静态资源缓存:将静态资源缓存在nginx服务器上,减少对后端服务器的请求,提高系统的性能。
● 安全防护:通过nginx服务器进行安全防护,例如限制请求频率、过滤恶意请求等。
安装、启动nginx相关命令
whereis nginx
zxvf .tar
./configure
make install
/usr/local/nginx
cd sbin/
./nginx
cd ..
cd conf/
cat nginx.conf
linux 防火墙把监听的端口放开
nginx -s stop
./nginx -s stop
vim nginx.conf
./nginx -s reload
cd /usr/local/nginx/sbin
cd /usr/local/nginx/sbin/
nginx特点
location{
root
index //动静分离
}
upstream k {
// 负载均衡
}
proxy_pass
// 反向代理
upstream k {
// 负载均衡
server ip:port weight 1;
server ip:port weight 1;
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。