Poulpatine 0 Posted January 1, 2018 Posted January 1, 2018 (edited) Hi, I'm unable to download videos from my emby server. Downloads are just added to download list with a "ready to transfer" status. encode files before tranencode files before tra Here are the logs from my server : https://zerobin.net/?c88aba27a8e7f2d9#4mUgo1FOBuOx+5bS40UPM5HwksDNkeaSKaW5l+ggbWY= I've also tried to change quality of my video, encoding is going well but after that, transfer is not starting neither. Thanks. Edited January 1, 2018 by Poulpatine
Luke 42077 Posted January 1, 2018 Posted January 1, 2018 Hi there, can you provide a log from the app? you can learn how to do that here: https://emby.media/community/index.php?/topic/15638-how-to-report-an-android-problem/ Thanks.
Poulpatine 0 Posted January 2, 2018 Author Posted January 2, 2018 Hi, here are the logs. https://zerobin.net/?bcd095291aa59837#QbHZ+hVLmc9mVTBkSBVTs7sGGBbWvYzKsU8Kuno0E2I= Problem seems to come from my SSL Certificate (Let's Encrypt) and from my automatic redirection from http to https (configured in nginx) I've disabled the redirection and it seems ok now. Do you know if there is a way to keep it ? Thanks.
Luke 42077 Posted January 2, 2018 Posted January 2, 2018 Instead of redirecting why not just connect over SSL in the first place?
Poulpatine 0 Posted January 2, 2018 Author Posted January 2, 2018 I connect in SSL but I also want to be sure that everybody uses SSL for everything.
pir8radio 1312 Posted January 2, 2018 Posted January 2, 2018 I connect in SSL but I also want to be sure that everybody uses SSL for everything. how are you doing your redirection in nginx. Post it.
Poulpatine 0 Posted January 3, 2018 Author Posted January 3, 2018 Here is my nginx configuration for this virtualhost : server { server_name myname.mydomain.com; listen 80; listen [::]:80; return 301 https://$server_name$request_uri; } server { server_name myname.mydomain.com; listen 443 ssl http2; listen [::]:443 ssl; ssl_certificate /etc/letsencrypt/live/myname.mydomain.com/cert.pem; ssl_certificate_key /etc/letsencrypt/live/myname.mydomain.com/privkey.pem; access_log /var/log/nginx/myname.mydomain.com.access.log; error_log /var/log/nginx/myname.mydomain.com.error.log; root /var/www/myname.mydomain.com; location / { proxy_pass http://embyserver:8096/; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_set_header X-Forwarded-Protocol $scheme; proxy_redirect off; # websocket proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } location ^~ /.well-known/acme-challenge/ { root /var/www/myname.mydomain.com/; allow all; default_type "text/plain"; } }
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now