26 lines
509 B
Nginx Configuration File
26 lines
509 B
Nginx Configuration File
|
|
server {
|
||
|
|
listen 80;
|
||
|
|
server_name localhost;
|
||
|
|
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
index index.html;
|
||
|
|
|
||
|
|
location / {
|
||
|
|
try_files $uri $uri/ /index.html;
|
||
|
|
}
|
||
|
|
|
||
|
|
# Proxy API requests if needed or let the frontend handle URLs
|
||
|
|
# location /api/v1/ {
|
||
|
|
# proxy_pass http://app-api:5001;
|
||
|
|
# }
|
||
|
|
|
||
|
|
# location /api/ {
|
||
|
|
# proxy_pass http://app-profiler:8000;
|
||
|
|
# }
|
||
|
|
|
||
|
|
error_page 500 502 503 504 /50x.html;
|
||
|
|
location = /50x.html {
|
||
|
|
root /usr/share/nginx/html;
|
||
|
|
}
|
||
|
|
}
|