知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

nginx的小总结(二)

发布时间:2014-09-05 15:09:20作者:知识屋

nginx的小总结(二)
 
nginx的小总结(一)
http://www.zhishiwu.com/os/201302/191860.html
 
配置文件比较多,下面列出一些
  www.zhishiwu.com  
[root@host2 nginx]# cat conf/nginx.conf | grep /# -v
 
#user  nobody;
 
user nginx nginx;                               //用户,这条是自己加的,因为被注释掉了
worker_processes  1;
 
 
events {
    worker_connections  1024;
 
    use  epoll;                                      //使用的i/o模型
}
 
 
http {
    include       mime.types;
    default_type  application/octet-stream;
 
    sendfile        on;
 
    keepalive_timeout  65;
 
    server {
 
 
        listen       80;                                           //监听的端口 
        server_name  localhost; 
 
        location / { 
            root   html; 
            index  index.html index.htm; 
        } 
 
 
        error_page   500 502 503 504  /50x.html; 
        location = /50x.html { 
            root   html; 
        } 
 
    }
}
 
可以看到的是,nginx的配置文档,是分区域的!
 
以上给出的即是nginx基础的配置,关于更详细的配置,请访问wiki.nginx.org
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜