You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: NGINX-Reverse-Proxy-for-Web-UI.md
+12-10
Original file line number
Diff line number
Diff 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:
# optionally, you can adjust the POST request size limit, to allow adding a lot of torrents at once
17
17
#client_max_body_size 100M;
18
18
19
+
# No longer required since qBittorrent v5.1:
19
20
# Since v4.2.2, is possible to configure qBittorrent
20
21
# to set the "Secure" flag for the session cookie automatically.
21
22
# However, that option does nothing unless using qBittorrent's built-in HTTPS functionality.
@@ -28,13 +29,14 @@ location /qbt/ {
28
29
}
29
30
```
30
31
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.
32
34
33
35
---
34
36
35
-
Obsolete directives, no longer needed when using recent qBittorrent versions
37
+
Obsolete directives, no longer needed when using recent qBittorrent versions:
36
38
37
-
- No longer required/discouraged since v4.1.2:
39
+
- No longer required and discouraged since v4.1.2:
38
40
39
41
```nginx
40
42
# The following directives effectively nullify Cross-site request forgery (CSRF)
0 commit comments