sabnzbd slow behind nginx

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
breadcan
Newbie
Newbie
Posts: 1
Joined: November 2nd, 2017, 11:31 am

sabnzbd slow behind nginx

Post by breadcan »

Hi,

I'm trying to migrate my reverse proxy setup from Apache to nginx.
All went fine but not sabnzbd.
Somehow every page request waits for about 60 seconds before it is processed.
It is the same for every page i load, homepage, config page, etc.

Is there any known issue with nginx and sabnzbd?

Google found only one similar issue in a reddit post without comments about a month ago.

sabnzbd is setup without ssl and auth.
nginx has basic auth, ssl.

The reverse proxy settings are simple:

Code: Select all

		location /sab/ {
			proxy_pass http://localhost:8080/sabnzbd/;
		}
		location /nzbd/ {
			proxy_pass http://localhost:8989/nzbd/;
		}
		location /rd/ {
			proxy_pass http://localhost:7878/rd/;
		}
Sonarr and Radarr both running fast in this setup.
Sab works fine behind the apache with similar config.
Sab without proxy works fine too.

An example how the config page loads:
Image
hitnrun30
Newbie
Newbie
Posts: 1
Joined: January 13th, 2018, 8:12 am

Re: sabnzbd slow behind nginx

Post by hitnrun30 »

Did you ever get this to work correctly, im having the same issue now
Post Reply