赞
踩
#配置前端代码包
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\\; #结尾必须要有\\
}
}
taskkill /f /t /im nginx.exe
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。