Jump to content

Sync / Download jobs getting deleted


Go to solution Solved by Luke,

Recommended Posts

PhyberApex
Posted (edited)

Since a few versions I've seen that I can no longer sync from the web app to my devices due to the dropdown of devices is always empty. This is undesirable but I can handle going into the app and clicking download. But every so often if I add a new sync job it just drops a few old sync jobs this happened to me again today. Also Since a few versions I am not able to sync outside of my home WiFi. I can click download within the app but it seems that it can't reach out to the server.

 

I am running emby through a nginx reverse proxy which might have something to do with this behavior.

 

Any help would be appreciated and I can give further information as required to figure out where the problem is.

 

Current Server Version: 3.2.28.0

Client: Emby for Android(deleting sync jobs), Emby Theater(no sync jobs but empty sync dropdown),  Emby WebApp(no sync jobs but empty sync dropdown)

 

PS: After a the update to 3.2.27 I had to manually delete the sync.db to get sync to even work again as seen here https://github.com/MediaBrowser/Emby/issues/2822

 

~Cheers

Edited by PhyberApex
pir8radio
Posted

Since a few versions I've seen that I can no longer sync from the web app to my devices due to the dropdown of devices is always empty. This is undesirable but I can handle going into the app and clicking download. But every so often if I add a new sync job it just drops a few old sync jobs this happened to me again today. Also Since a few versions I am not able to sync outside of my home WiFi. I can click download within the app but it seems that it can't reach out to the server.

 

I am running emby through a nginx reverse proxy which might have something to do with this behavior.

 

Any help would be appreciated and I can give further information as required to figure out where the problem is.

 

Current Server Version: 3.2.28.0

Client: Emby for Android(deleting sync jobs), Emby Theater(no sync jobs but empty sync dropdown),  Emby WebApp(no sync jobs but empty sync dropdown)

 

PS: After a the update to 3.2.27 I had to manually delete the sync.db to get sync to even work again as seen here https://github.com/MediaBrowser/Emby/issues/2822

 

~Cheers

 

Post your nginx config without your server url info.

PhyberApex
Posted (edited)

Post your nginx config without your server url info.

server {
	location /emby {
		rewrite ^/emby(/.*)$ $1 break;
		proxy_pass http://localhost:8004;
		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;

		proxy_http_version 1.1;
		proxy_set_header Upgrade $http_upgrade;
		proxy_set_header Connection "upgrade";		
	}

	listen 443 ssl;
	ssl_certificate /etc/letsencrypt/live/DNS/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/DNS/privkey.pem;
	ssl_dhparam /etc/nginx/ssl/dhparams.pem;
	ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
	ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
	ssl_prefer_server_ciphers on;
	ssl_session_cache shared:SSL:10m;
	server_name DNS;
	
	# Add headers to serve security related headers
	# Before enabling Strict-Transport-Security headers please read into this topic first.
	#add_header Strict-Transport-Security "max-age=15768000; includeSubDomains";
	add_header X-Content-Type-Options nosniff;
	add_header X-Frame-Options "SAMEORIGIN";
	add_header X-XSS-Protection "1; mode=block";
	add_header X-Robots-Tag none;
	add_header X-Download-Options noopen;
	add_header X-Permitted-Cross-Domain-Policies none;
}

Hope that's all

 

~Cheers

Edited by PhyberApex
  • Solution
Posted

@@PhyberApex this is a known issue for now, but in the meantime you can still sync individual titles.

  • Like 1
PhyberApex
Posted

Thanks for letting me know. I'll just wait for a possible fix in a future release. Will you mention this in the release notes if it should be fixed?

 

If you find anything wrong with the config @@pir8radio let me know!

 

~Cheers

pir8radio
Posted

Thanks for letting me know. I'll just wait for a possible fix in a future release. Will you mention this in the release notes if it should be fixed?

 

If you find anything wrong with the config @@pir8radio let me know!

 

~Cheers

 

Sorry, forgot about you.. lol good sounds like its getting worked on.... 

No, your config looks fine by the way.   good job.   :)

  • Like 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...