Problem: no images or icons are loaded through the proxy
Setup:
Ubuntu 15.04 server x64
Sonarr running through SSL on port 9898
apache perm redirect all http > https traffic
urlbase = /sonarr
When I go to “https://example.com:9898” everything works fine
When I try going through https://example.com/sonarr it loads, but no images are loaded.
Ex:
apache host setup:
ProxyPass /sonarr https://localhost:9898/
ProxyPassReverse /sonarr https:/localhost:9898/
Are the requests from the proxy going to https:/localhost:9898/ or https:/localhost:9898/sonarr ? They should be going to the latter.
correct, it ends up being /sonarr at the end
The error log reports this for all the missing elements:
Couldn’t find handler for //Content/fonts/opensans-regular.ttf
I understand it’s probably because of the double slash but I have no idea why it loads with 2 slashs as the path.
Did you look at the reddit thread?
I cant remember if it matters but remove the trailing / from your proxy pass so it looks like.
ProxyPass http://localhost:8989
ProxyPassreverse http://localhost:8989