-
-
Notifications
You must be signed in to change notification settings - Fork 4k
IIS ARR Reverse Proxy
For users that run qBittorrent via Microsoft IIS as a reverse proxy some extra headers are needed. You must install the URL Rewrite and Application Request Routing addons first. Reverse proxy support will be enabled when creating the first rule.
-
In the IIS Manager, Click on the machine name to view general configuration options
-
Click on Application Request Routing Cache
-
On the Right hand side, Click on Server Proxy Setting, then tick the Enable Proxy box
-
Create a new site that will handle the reverse proxy requests
-
Select the site and then open URL Rewrite
-
On the right hand side, open View Server Variables
-
Click Add and in the box that appears enter
HTTP_X-Forwarded-Host
-
Repeat this for
HTTP_X-Forwarded-For
andRESPONSE_Set_Cookie
-
Return to the rules page
-
Open Add Rules and select Reverse Proxy
-
Enter the server IP:Port without
http://
(for example127.0.0.1:8080
), then click OK -
Open the new rule and change the path to a subdirectory if needed (for example qbweb/(.*) = http://domain.tld/qbweb/)
-
Under Server Variables add the following rules:
Server variable name Value HTTP_X-Forwarded-Host {HTTP_HOST}:{SERVER_PORT} HTTP_X-Forwarded-For {REMOTE_ADDR} -
Apply and return to the rules page
-
Open Add Rules and select Blank rule under Outbound rules
-
Enter the name
Update Cookie Path
-
Change Matching scope to
Server Variable
-
Enter the variable name
RESPONSE_Set_Cookie
-
Enter the pattern
^(.*; path=/)$
-
Under Action Properties enter the value
{R:1}; Secure
-
Apply
The result should look similar to this in your web.config (Note: you must use the GUI first so reverse proxy support is enabled in IIS):
<rules>
<rule name="Reverse Proxy">
<match url="qbweb/(.*)" />
<action type="Rewrite" url="http://127.0.0.1:8080/{R:1}" />
<serverVariables>
<set name="HTTP_X-Forwarded-Host" value="{HTTP_HOST}:{SERVER_PORT}" />
<set name="HTTP_X-Forwarded-For" value="{REMOTE_ADDR}" />
</serverVariables>
</rule>
</rules>
<outboundRules>
<rule name="Update Cookie Path">
<match serverVariable="RESPONSE_Set_Cookie" pattern="^(.*; path=/)$" negate="false" />
<action type="Rewrite" value="{R:1}; Secure" />
</rule>
</outboundRules>
Additionally you must untick Enable Cross-Site Request Forgery (CSRF) protection in qBittorrent's Web UI options for the reverse proxy to work.
You can use HTTPS to access the URL via IIS and it will use HTTP to communicate with qBittorrent. There is no need for HTTPS on localhost.
Note: If you find yourself seeing WebAPI login failure. Reason: IP has been banned, IP: 127.0.0.1
and needing to restart qBittorrent, you may want to set the ban after failure count to 0
which will disable it.
This tutorial is based on the assistance of Chocobo1 in this thread and in this thread for version 3.3.13 onwards.
- Installing qBittorrent
- Frequently Asked Questions (FAQ)
- qBittorrent options (current and deprecated)
- How to use qBittorrent as a tracker
- How to use portable mode
- Anonymous mode
- How to bind your vpn to prevent ip leaks
State | Version |
---|---|
Current | qBittorrent ≥ v4.1 |
Previous | qBittorrent v3.2.0 - v4.0.x |
Obsolete | qBittorrent < v3.2.0 |
- Let's Encrypt Certificates + Caddy2 Reverse Proxy
- Let's Encrypt certificates + NGINX reverse proxy - Linux
- Let's Encrypt certificates - Linux
- Self-signed SSL certificates - Linux
- Running qBittorrent without X server (WebUI only)
- Running qBittorrent without X server (WebUI only, systemd service set up, Ubuntu 15.04 or newer)
- OpenVPN and qBittorrent without X server
- Coding style
- Contributing
- How to write a search plugin
- Using VSCode for qBittorrent development
- Setup GDB with Qt pretty printers
- How to debug WebUI code