Sync from /srv/compose/unified-media-manager

This commit is contained in:
Christopher Mayor
2026-04-24 10:45:19 -07:00
commit 7dbd00e537
132 changed files with 25394 additions and 0 deletions

20
frontend/nginx.conf Normal file
View File

@@ -0,0 +1,20 @@
server {
listen 3000;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
gzip on;
gzip_types application/json;
gzip_min_length 256;
gzip_vary on;
location /api/ {
proxy_pass http://gluetun:8084/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}