chessh/front/nginx.conf

19 lines
304 B
Nginx Configuration File
Raw Normal View History

2023-01-19 02:13:00 -05:00
upstream server {
server server:8080;
}
server {
listen 80;
location / {
root /usr/share/nginx/html/;
index index.html index.htm index.nginx-debian.html;
try_files $uri $uri/ /index.html;
}
2023-01-19 02:13:00 -05:00
location /api/ {
proxy_set_header Host $host;
proxy_pass http://server/;
}
}