标签:设置 color pst 均衡 vhost www hosts 服务 stream
nginx 整理
nginx 配置主要是分为4个部分
1、main 全局设置
2、server 主机设置 -- 指定主机与端口
3、upstream 负载均衡服务器设置 -- 反向代理设置;
4、location URL 匹配特定位置的设置 -- 匹配网页位置;
可以通过location 指令实现对nginx 对动静网页进行过滤处理;
events {
...
}
http {
....
server {
localtion {
...
}
...
}
server {
include /nginx/conf/vhosts/www1.com.conf
// 配置虚拟主机配置内容指向位置;其实也是一个 server 虚拟主机配置;
}
}
标签:设置 color pst 均衡 vhost www hosts 服务 stream
原文地址:http://www.cnblogs.com/sharesdk/p/7851055.html