2024-11-12, 07:24 AM
Hello everyone!
I'm trying to configure Jellyfin to serve over HTTPS using Nginx Proxy Manager (NPM), but I’m running into some issues.
This is my setup:
The issue arises when configuring Jellyfin with NPM. Here’s the current advanced configuration I have set up in NPM:
I tried the official documentation here: https://jellyfin.org/docs/general/networ...xy-manager
And tried some changes trying make it work, but nothing is having a good result. Any ideas?
Sorry for my english
I'm trying to configure Jellyfin to serve over HTTPS using Nginx Proxy Manager (NPM), but I’m running into some issues.
This is my setup:
- TrueNas host 192.168.1.91 (accessible on port 5050)
- I have Jellyfin installation (accesible usgin http://192.168.1.91:20004)
- I setted up base URL to /jellyfin in my Dashboard.
- NPM host (192.168.1.150)
The issue arises when configuring Jellyfin with NPM. Here’s the current advanced configuration I have set up in NPM:
Code:
location /jellyfin/ {
proxy_pass http://192.168.1.91:20004;
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Protocol $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_headers_hash_max_size 2048;
proxy_headers_hash_bucket_size 128;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-XSS-Protection "0";
add_header X-Content-Type-Options "nosniff";
add_header Content-Security-Policy "default-src https: data: blob: ; img-src 'self' https://* ; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline' https://www.gstatic.com https://www.youtube.com blob:; worker-src 'self' blob:; connect-src 'self'; object-src 'none'; frame-ancestors 'self'";
}
I tried the official documentation here: https://jellyfin.org/docs/general/networ...xy-manager
And tried some changes trying make it work, but nothing is having a good result. Any ideas?
Sorry for my english