27 lines
652 B
Plaintext
27 lines
652 B
Plaintext
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
# Serve favicon files
|
|
location /favicon/ {
|
|
alias /usr/share/nginx/html/dist/favicon/;
|
|
access_log off;
|
|
expires max;
|
|
}
|
|
|
|
# Proxy API requests to the backend
|
|
location /api {
|
|
proxy_pass http://fusero-app-backend:14000;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection 'upgrade';
|
|
proxy_set_header Host $host;
|
|
proxy_cache_bypass $http_upgrade;
|
|
}
|
|
} |