szoe-pontok/default.conf.template
2024-10-11 15:58:12 +02:00

15 lines
208 B
Plaintext

server {
listen ${NGINX_PORT};
root /usr/share/nginx/html;
location / {
index index.html;
}
error_page 404 /404.html;
location ~ api\/?.* {
proxy_pass http://backend:5000;
}
}