Anonymous
7/25/2025, 7:33:46 PM
No.106021900
>>106021765
>>106021791
where would i define that stuff you listed? I have been trying to move things to docker (especially docker-compose files) as i like that i could easily recreate them or move them to another system more easily. I'm not sure if this is part of the problem, but that jellyfin.conf is the only nginx conf i had, i did create this now but didnt seem to make a difference. I'm not sure the docker-compose changes anything does it? It would be the same if i was using docker without the compose file if i gave it the same name
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $host [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
client_max_body_size 0;
include /etc/nginx/conf.d/*.conf;
}
>>106021791
where would i define that stuff you listed? I have been trying to move things to docker (especially docker-compose files) as i like that i could easily recreate them or move them to another system more easily. I'm not sure if this is part of the problem, but that jellyfin.conf is the only nginx conf i had, i did create this now but didnt seem to make a difference. I'm not sure the docker-compose changes anything does it? It would be the same if i was using docker without the compose file if i gave it the same name
events {
worker_connections 1024;
}
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $host [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
keepalive_timeout 65;
client_max_body_size 0;
include /etc/nginx/conf.d/*.conf;
}