博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx 配置反向代理和负载均衡
阅读量:5158 次
发布时间:2019-06-13

本文共 597 字,大约阅读时间需要 1 分钟。

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  www.test.com;//域名        location / {            proxy_pass   http://tomcat;            index           index.html index.htm;        } }

转载于:https://www.cnblogs.com/-saligia-/p/9749527.html

你可能感兴趣的文章
淡定,啊。数据唯一性
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
转:Linux设备树(Device Tree)机制
查看>>
iOS 组件化
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
tkinter布局
查看>>
命令ord
查看>>
Sharepoint 2013搜索服务配置总结(实战)
查看>>
博客盈利请先考虑这七点
查看>>