2024-03-27, 05:07 PM
Thanks again!
I ve change into this
but still get "no response"
This my default.conf now:
what about
should i change jellyfin here too? Server Name of the Host or the Docker Container Name? My Jellyfin is not on Docker!
My Setup:
`
Libreelec with official Jellyfin Addon and "SWAG Docker Addon" runs on the same host. Only SWAG is in docker.
Maybe Docker Addon don't talk with host? How can i bring them together?
In jellyfin Network Settings is https not active. Only the official Port Entry 8920. Is that correct?
I ve change into this
but still get "no response"
This my default.conf now:
Quote:server {
listen 443 ssl;
listen [::]:443 ssl;
server_name jellyfin.*;
include /config/nginx/ssl.conf;
client_max_body_size 0;
location / {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_app 192.0.0.2;
set $upstream_port 8096;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
location ~ (/socket/ {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_app 192.0.0.2;
set $upstream_port 8096;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
}
what about
Quote:server_name jellyfin.*;
should i change jellyfin here too? Server Name of the Host or the Docker Container Name? My Jellyfin is not on Docker!
My Setup:
`
Libreelec with official Jellyfin Addon and "SWAG Docker Addon" runs on the same host. Only SWAG is in docker.
Maybe Docker Addon don't talk with host? How can i bring them together?
In jellyfin Network Settings is https not active. Only the official Port Entry 8920. Is that correct?