goindex-theme-r/public/nginx.conf

14 lines
373 B
Nginx Configuration File
Raw Normal View History

2020-04-28 19:02:48 +08:00
server {
listen 8082;
server_name localhost;
2020-04-29 09:45:06 +08:00
root /Users/momik/Documents/MyWork/OpenSource/go2index-theme-acrou/dist;
2020-04-28 19:02:48 +08:00
location /0: {
proxy_pass https://ossdev.achirou.workers.dev;
}
2020-04-29 09:45:06 +08:00
# location / {
# root /Users/momik/Documents/MyWork/OpenSource/go2index-theme-acrou/dist;
# index index.html index.htm;
# }
2020-04-28 19:02:48 +08:00
}