Skip to content

Commit a998759

Browse files
committedSep 2, 2024··
Update reverse proxy settings
1 parent 13e942e commit a998759

File tree

2 files changed

+13
-10
lines changed

2 files changed

+13
-10
lines changed
 

‎Home.md

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ The wiki source code is hosted at https://github.com/qbittorrent/wiki and is acc
6464
### Reverse proxy setup for WebUI access
6565

6666
* [NGINX](https://github.com/qbittorrent/qBittorrent/wiki/NGINX-Reverse-Proxy-for-Web-UI)
67+
(canonical source for reverse proxy settings)
6768
* [Microsoft IIS ARR](https://github.com/qbittorrent/qBittorrent/wiki/IIS-ARR-Reverse-Proxy)
6869
* [Traefik](https://github.com/qbittorrent/qBittorrent/wiki/Traefik-Reverse-Proxy-for-Web-UI)
6970

‎NGINX-Reverse-Proxy-for-Web-UI.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
1-
This configuration allows you to use NGINX as a reverse proxy for the WebUI listening on a local address to expose it outside of your LAN, on the Web. It is assumed that your WebUI is configured to be accessible at `http://127.0.0.1:30000/`, and you wish to be able to access it outside of your LAN at `mywebsite.com/qbt`. Then, in the NGINX configuration used to serve `mywebsite.com`, your `location /qbt/` stanza should have the following settings:
1+
This configuration allows you to use NGINX as a reverse proxy for the WebUI listening on a local address to expose it outside of your LAN, on the Web. \
2+
It is assumed that your WebUI is configured to be accessible at `http://127.0.0.1:30000/`, and you wish to be able to access it outside of your LAN at `mywebsite.com/qbt`. \
3+
Then, in the NGINX configuration used to serve `mywebsite.com`, your `location /qbt/` stanza should have the following settings:
24

35
```nginx
46
location /qbt/ {
57
proxy_pass http://127.0.0.1:30000/;
68
proxy_http_version 1.1;
79
8-
proxy_set_header Host 127.0.0.1:30000;
10+
# headers recognized by qBittorrent
11+
proxy_set_header Host $proxy_host;
12+
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
913
proxy_set_header X-Forwarded-Host $http_host;
10-
proxy_set_header X-Forwarded-For $remote_addr;
11-
12-
# not used by qBittorrent
13-
#proxy_set_header X-Forwarded-Proto $scheme;
14-
#proxy_set_header X-Real-IP $remote_addr;
14+
proxy_set_header X-Forwarded-Proto $scheme;
1515
1616
# optionally, you can adjust the POST request size limit, to allow adding a lot of torrents at once
1717
#client_max_body_size 100M;
1818
19+
# No longer required since qBittorrent v5.1:
1920
# Since v4.2.2, is possible to configure qBittorrent
2021
# to set the "Secure" flag for the session cookie automatically.
2122
# However, that option does nothing unless using qBittorrent's built-in HTTPS functionality.
@@ -28,13 +29,14 @@ location /qbt/ {
2829
}
2930
```
3031

31-
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.
32+
Note: If you find yourself seeing `WebAPI login failure. Reason: IP has been banned, IP: 127.0.0.1` and needing to restart qBittorrent,
33+
you may want to set the ban after failure count to `0` which will disable it.
3234

3335
---
3436

35-
Obsolete directives, no longer needed when using recent qBittorrent versions
37+
Obsolete directives, no longer needed when using recent qBittorrent versions:
3638

37-
- No longer required/discouraged since v4.1.2:
39+
- No longer required and discouraged since v4.1.2:
3840

3941
```nginx
4042
# The following directives effectively nullify Cross-site request forgery (CSRF)

0 commit comments

Comments
 (0)
Please sign in to comment.