szoe-pontok/default.conf.template

15 lines
208 B
Plaintext
Raw Normal View History

2024-10-10 15:34:48 +00:00
server {
listen ${NGINX_PORT};
2024-10-11 13:58:12 +00:00
root /usr/share/nginx/html;
2024-10-10 15:34:48 +00:00
location / {
2024-10-11 13:58:12 +00:00
index index.html;
2024-10-10 15:34:48 +00:00
}
2024-10-11 13:58:12 +00:00
error_page 404 /404.html;
2024-10-10 15:34:48 +00:00
location ~ api\/?.* {
proxy_pass http://backend:5000;
}
}