win上nginx作为文件服务器

在nginx下的nginx.conf下

autoindex on;# 显示目录
    autoindex_exact_size on;# 显示文件大小
    autoindex_localtime on;# 显示文件时间

    server {
        listen       8099;
        server_name  _;
        root  D:\zq\oltest\oltest\googlemaps11;#本地文件路径

简明扼要,输入ip:端口号 即可访问

猜你喜欢

转载自blog.csdn.net/qq_31001889/article/details/80417840