Commit 6dba1a32 by zhangxingmin

push

parent d1f146cd
# nginx.conf (调试版)
server {
listen 8333;
server_name localhost;
listen 8333;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# 详细错误日志
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log debug; # 开启debug日志
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html; # 处理Vue路由history模式
if ($request_method = OPTIONS) {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
limit_except GET POST PUT DELETE OPTIONS {
deny all;
}
}
location / {
try_files $uri $uri/ /index.html;
# 临时允许目录列表(调试用)
autoindex on;
}
# 防止vue-router路由被缓存
location ~* \.(html)$ {
add_header Cache-Control "no-cache, must-revalidate";
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment