goindex-theme-r/nginx/nginx.conf
2020-05-06 20:45:18 +08:00

17 lines
357 B
Nginx Configuration File

server {
listen 8082;
server_name localhost;
root /Users/momik/Documents/MyWork/OpenSource/go2index-theme-acrou/dist;
# location /0: {
# proxy_pass http://ossdev.achirou.workers.dev;
# }
location =/index.html{
index index.html;
}
location ?!(.*\.js|css) {
try_files '' /index.html;
}
}