码迷,mamicode.com
首页 > 其他好文 > 详细

Nginx配置文件解析

时间:2017-11-17 15:04:24      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:设置   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 虚拟主机配置;
}
}

 

 

Nginx配置文件解析

标签:设置   color   pst   均衡   vhost   www   hosts   服务   stream   

原文地址:http://www.cnblogs.com/sharesdk/p/7851055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!