码迷,mamicode.com
首页 > Windows程序 > 详细

nginx1.15.0-window 文件服务器

时间:2018-06-21 13:51:52      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:cat   文件服务   autoindex   log   follow   text   form   push   byte   

配置文件>>

worker_processes 1;

events {
worker_connections 1024;
}

http {
log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘
‘$status $body_bytes_sent "$http_referer" ‘
‘"$http_user_agent" "$http_x_forwarded_for"‘;

    access_log  logs/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    #文件服务器
    server {
    listen 80;
    server_name localhost;
    charset utf-8,gbk;
    root E:/tool;
    location / {
        autoindex on;
        autoindex_exact_size on;
        autoindex_localtime on;     
    }
    }

}

访问:http://127.0.0.1
技术分享图片

nginx1.15.0-window 文件服务器

标签:cat   文件服务   autoindex   log   follow   text   form   push   byte   

原文地址:http://blog.51cto.com/13172370/2131227

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