admin 管理员组

文章数量: 887017

一、nginx.conf文件配置

#配置前端代码包
server {
        listen 80;
        server_name  localhost 127.0.0.1 0.0.0.0;
        location / {
            root   D:\\lmp\\dist\\;
            index  index.html index.htm;
        }
}

#开放本地目录-root
server {
        listen 81;
        server_name  localhost 127.0.0.1 0.0.0.0;
    	charset utf-8; #处理中文乱码
	    location / {
	        autoindex on; # 开启目录浏览
	        autoindex_exact_size off; # 详细文件大小统计,显示MB,GB,默认为b
	        autoindex_localtime on; # 服务器本地时区,文件修改日期
	        root D:\\lmp\\dist\\; #结尾可以不要\\
	    }
}
#开放本地目录-alias
server {
        listen 82;
        server_name  localhost 127.0.0.1 0.0.0.0;
    	charset utf-8; #处理中文乱码
	    location /test {
	        autoindex on; # 开启目录浏览
	        autoindex_exact_size off; # 详细文件大小统计,显示MB,GB,默认为b
	        autoindex_localtime on; # 服务器本地时区,文件修改日期
	        alias D:\\lmp\\dist\\; #结尾必须要有\\
	    }
}

二、强制关闭nginx.exe

taskkill /f /t /im nginx.exe

本文标签: 本地文件 目录 Windows nginx