10 hours ago
Hmm, what level should i put the logging into, my logging.json is like this
but you are correct, there are still sql statements in there. I am getting them directly from docker logs.
Yes my jellyfin runs behind an nginx reverse proxy, however no config was changed recently.
Also note that i found out that it seems to be indeed an issue exclusive to mp4 files. mkv files play without any problems.
Code:
{
"Serilog": {
"MinimumLevel": {
"Default": "Info",
"Override": {
"": "Info"
}
}
}
but you are correct, there are still sql statements in there. I am getting them directly from docker logs.
Yes my jellyfin runs behind an nginx reverse proxy, however no config was changed recently.
Code:
server {
listen 443 ssl;
http2 on;
server_name domain.com;
access_log /var/log/nginx/jellyfin.access.log main;
error_log /var/log/nginx/jellyfin.error.log ;
resolver 127.0.0.11 valid=30s;
location / {
resolver 127.0.0.11 valid=30s;
set $upstream jellyfin;
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;
proxy_pass http://$upstream:8096;
}
}
Also note that i found out that it seems to be indeed an issue exclusive to mp4 files. mkv files play without any problems.