nginx1.15.0-window 文件服務器

配置文件>>

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 文件服務器

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章