Files
Home_assistant/frontend/nginx.conf
2026-06-09 09:36:48 +03:00

21 lines
452 B
Nginx Configuration File

server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location /api/ {
proxy_pass http://backend:8080;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_buffering off;
proxy_cache off;
chunked_transfer_encoding off;
}
location / {
try_files $uri $uri/ /index.html;
}
}