Chinaunix首页 | 论坛 | 博客
  • 博客访问: 617054
  • 博文数量: 73
  • 博客积分: 1813
  • 博客等级: 上尉
  • 技术积分: 1213
  • 用 户 组: 普通用户
  • 注册时间: 2009-12-27 19:59
文章分类
文章存档

2013年(1)

2012年(12)

2011年(28)

2010年(31)

2009年(1)

我的朋友

分类: 系统运维

2011-04-12 17:03:37

# cat /usr/local/nginx/conf/nginx.conf

#user  nobody;
worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    keepalive_timeout  65;
     #添加以下3条
    autoindex on;    
    autoindex_exact_size off;
    autoindex_localtime on;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;

        location / {
            root   /file_server/targtime/;
            index  index.html index.htm;
        }
        
error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}

Index of /OperateSystem/Linux/


                        03-Apr-2011 09:26      4G
                             19-Jan-2011 06:52      3G
                                       09-Apr-2011 10:09      3G
 09-Apr-2011 10:14      3G
                        23-Nov-2010 22:37    633M
                04-Apr-2011 02:48    664M
                       22-Feb-2011 07:21      3G
                      10-Nov-2010 06:09    693M
                       30-Nov-2010 04:46    627M
阅读(596) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~