1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > nginx 配置反向代理和负载均衡

nginx 配置反向代理和负载均衡

时间:2019-11-15 04:50:49

相关推荐

nginx 配置反向代理和负载均衡

Nginx的配置文件:

nginx安装目录/conf/nginx.conf

重新加载配置文件

./nginx -s reload

配置虚拟主机

一个server就是一台虚拟主机

server {listen 80;//监听端口server_name localhost;//域名location / {root html;index index.html index.htm;}}

反向代理与负载均衡

upstream tomcat {server ip1:端口号1 weight=2;server ip2:端口号2 weight=2;//权重}server {listen 80;//监听端口server_name ;//域名location / {proxy_pass http://tomcat;index index.html index.htm;}}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。