¶ Reverse Proxy Configuration
Sample config examples for configuring Prowlarr to be accessible through a reverse proxy.
These examples assumes the default port of
9696and that you set a baseurl ofprowlarr. It also assumes your web server i.e nginx and Prowlarr running on the same server accessible atlocalhost. If not, use the host IP address or a FQDN instead.
¶ NGINX
Add the following configuration to nginx.conf located in the root of your Nginx configuration. The code block should be added inside the server context. Full example of a typical Nginx configuration
If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.:
proxy_set_header Host $host:$server_portorproxy_set_header Host $http_hostas well asproxy_set_header X-Forwarded-Host $host:$server_portorproxy_set_header X-Forwarded-Host $http_host
A better way to organize your configuration files for Nginx would be to store the configuration for each site in a separate file.
To achieve this it is required to modify nginx.conf and add include subfolders-enabled/*.conf in the server context. So it will look something like this.
Adding this line will include all files that end with .conf to the Nginx configuration. Make a new directory called subfolders-enabled in the same folder as your nginx.conf file is located. In that folder create a file with a recognizable name that ends with .conf. Add the configuration from above from the file and restart or reload Nginx. You should be able to visit Prowlarr at yourdomain.tld/prowlarr. tld is short for Top Level Domain
¶ Subdomain
Alternatively you can use a subdomain for prowlarr. In this case you would visit prowlarr.yourdomain.tld. For this you would need to configure a A record or CNAME record in your DNS.
Many free DNS providers do not support this
By default Nginx includes the sites-enabled folder. You can check this in nginx.conf, if not you can add it using the include directive. And really important, it has to be inside the http context. Now create a config file inside the sites-enabled folder and enter the following configuration.
For this configuration it is recommended to set baseurl to '' (empty). This configuration assumes you are using the default
9696and Prowlarr is accessible on the localhost (127.0.0.1). For this configuration the subdomainprowlarris chosen (line 5).
If you're using a non-standard http/https server port, make sure your Host header also includes it, i.e.:
proxy_set_header Host $host:$server_port
Now restart Nginx and Prowlarr should be available at your selected subdomain.
¶ Apache
This should be added within an existing VirtualHost site. If you wish to use the root of a domain or subdomain, remove prowlarr from the Location block and simply use / as the location.
Note: Do not remove the baseurl from ProxyPass and ProxyPassReverse if you want to use / as the location.
ProxyPreserveHost on prevents apache2 from redirecting to localhost when using a reverse proxy.
Or for making an entire VirtualHost for Prowlarr:
If you implement any additional authentication through Apache, you should exclude the following paths:
/prowlarr/api/
¶ Using SSL on the Apache reverse proxy
If the reverse proxy does SSL termination (i.e. the URL to access the reverse proxy is using the https:// protocol), then you need to tell Prowlarr that it should use https:// for its API responses by setting the X-Forwarded-Proto correctly. The common way is to add the following lines under the ProxyPassReverse configuration:
Note that this configuration requires enabling the mod_header Apache module, which is often not enabled by default.