home-network/_share/data/nginx/jellyfin.conf

19 lines
506 B
Text
Raw Normal View History

2025-07-29 02:46:43 +03:00
server {
listen 80;
server_name jellyfin.ronnyabraham.com;
location / {
proxy_pass http://localhost:8096;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# WebSocket support
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
}