mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-20 13:23:48 -07:00
set the correct header to satisfy qbit csrf check
This commit is contained in:
parent
0548fd27ff
commit
539fd19f9e
2 changed files with 16 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
## Version 2022/09/08
|
||||
## Version 2022/10/25
|
||||
# qbittorrent does not require a base url setting
|
||||
|
||||
location /qbittorrent {
|
||||
|
@ -27,6 +27,7 @@ location ^~ /qbittorrent/ {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/api {
|
||||
|
@ -41,6 +42,7 @@ location ^~ /qbittorrent/api {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/command {
|
||||
|
@ -55,6 +57,7 @@ location ^~ /qbittorrent/command {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/query {
|
||||
|
@ -69,6 +72,7 @@ location ^~ /qbittorrent/query {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/login {
|
||||
|
@ -83,6 +87,7 @@ location ^~ /qbittorrent/login {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/sync {
|
||||
|
@ -97,6 +102,7 @@ location ^~ /qbittorrent/sync {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
||||
location ^~ /qbittorrent/scripts {
|
||||
|
@ -111,4 +117,5 @@ location ^~ /qbittorrent/scripts {
|
|||
|
||||
proxy_set_header Referer '';
|
||||
proxy_set_header Host $upstream_app:$upstream_port;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue