chessh/front/nginx.conf
2023-01-18 23:37:38 -07:00

14 lines
244 B
Nginx Configuration File

server {
listen 80;
location / {
root /usr/share/nginx/html/;
index index.html index.htm index.nginx-debian.html;
try_files $uri $uri/ /index.html;
}
location ~ ^/api(/.*|$) {
proxy_pass http://server:8080/$1;
}
}