goindex-theme-r/public/nginx.conf
2020-04-28 19:02:48 +08:00

13 lines
282 B
Nginx Configuration File

server {
listen 8082;
server_name localhost;
location /0: {
proxy_pass https://ossdev.achirou.workers.dev;
}
location / {
root /Users/jieshi/Desktop/MyWork/VueWork/go2index-theme-acrou/dist;
index index.html index.htm;
}
}