Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual search not working in Radarr with theme enabled #2

Closed
goldenpipes opened this issue Oct 31, 2018 · 5 comments
Closed

Manual search not working in Radarr with theme enabled #2

goldenpipes opened this issue Oct 31, 2018 · 5 comments

Comments

@goldenpipes
Copy link
Contributor

goldenpipes commented Oct 31, 2018

here's my nginx block just in case i missed something.

# Radarr Reverse Proxy
# Be sure to set your Base-URL in Radarr
location /radarr {
proxy_set_header Accept-Encoding "";
sub_filter
'</head>'
'<link rel="stylesheet" type="text/css" href="https://gilbn.github.io/theme.park/CSS/themes/orgarr.css">
</head>';
sub_filter_once on;
        proxy_pass http://127.0.0.1:7878/radarr;
        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_http_version 1.1;
        proxy_no_cache $cookie_session;
        # Allow the Radarr API through if you enable Auth on the block above
        location /radarr/api { auth_request off;
                proxy_pass http://127.0.0.1:7878/radarr/api;
        }
}

auto search works.

Request URL: http://127.0.0.1/radarr/signalr/poll?transport=longPolling&connectionToken=AQAAANCMnd8BFdERjHoAwE%2FCl%2BsBAAAAHZIPwjFALkCfS1ysf5lG%2FQAAAAACAAAAAAAQZgAAAAEAACAAAAB6xCctSIzqljE4PF%2BQCGVSrp%2Fgd1YxYUXGChMMQTOTJwAAAAAOgAAAAAIAACAAAAAHeDYaxsIeMrBuWop3AmgsrvVU%2F5TlNuNkwCowdZc5BzAAAAD%2BLIpBDTw4E1aMtGUlufhHjr%2F3YfNAWwkvTOodP9DJvpeXA%2BhHOMipMIoPFoE7DBhAAAAAxmlPvxJKG3nT%2BWPFFEHiU3xplFTWx9jmgBb3pqA7W%2FFBLVuuoMhV9R8iOxynqjWZVgS7EMy3C8P%2Bq007Qcd%2FAw%3D%3D&messageId=d-6B7F69BB-B%2C1C%7CE%2C0%7CF%2C0&apiKey=redacted&tid=2&_=1541025834276
Request Method: GET
Status Code: 504 Gateway Time-out
Remote Address: 127.0.0.1:80
Referrer Policy: no-referrer-when-downgrade
Connection: keep-alive
Content-Type: text/html; charset=UTF-8
Date: Wed, 31 Oct 2018 22:49:32 GMT
Server: nginx/1.14.0
Transfer-Encoding: chunked
X-Powered-By: PHP/7.2.5
Accept: application/json, text/javascript, */*; q=0.01
Accept-Encoding: gzip, deflate, br
Accept-Language: en-US,en;q=0.9
Cache-Control: no-cache
Connection: keep-alive
Content-Type: application/json; charset=UTF-8
Cookie:
DNT: 1
Host: 127.0.0.1
Pragma: no-cache
Referer: http://127.0.0.1/radarr/movies/stuck-in-love-111969
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36
X-Api-Key: redacted
X-Requested-With: XMLHttpRequest
transport: longPolling
connectionToken: redacted
messageId: d-6B7F69BB-B,1C|E,0|F,0
apiKey: redacted
tid: 2
_: 1541025834276
@goldenpipes
Copy link
Contributor Author

sonarr works. exact same set up

@GilbN
Copy link
Collaborator

GilbN commented Oct 31, 2018

Hm. That is very strange. I just tested ans works for me. No errors in console when testing?

@goldenpipes
Copy link
Contributor Author

504 gateway timeout

@goldenpipes
Copy link
Contributor Author

I'm starting to think something is goofy with either my conf or my install. Starting with a blank conf and it's not even working without the theme.

I'm an extreme noob at nginx

@goldenpipes
Copy link
Contributor Author

figured it out!

    proxy_connect_timeout       300;
    proxy_send_timeout          300;
    proxy_read_timeout          300;
    send_timeout                300;

adding this to my config stopped it from timing out!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants