-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,16 @@ | ||
# Version=1.0 | ||
location /qbittorrent/ { | ||
proxy_pass http://127.0.0.1:8086; | ||
location /qbittorrent | ||
{ | ||
rewrite ^(.*[^/])$ $1/ permanent; | ||
} | ||
|
||
location ~ /qbittorrent/(?<url>.*) | ||
{ | ||
auth_basic "off"; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
TommyE123
Author
Owner
|
||
proxy_pass http://127.0.0.1:8086/$url; | ||
proxy_hide_header Referer; | ||
proxy_hide_header Origin; | ||
proxy_set_header Referer ''; | ||
proxy_set_header Origin ''; | ||
add_header X-Frame-Options "SAMEORIGIN"; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
TommyE123
Author
Owner
|
||
} |
I don't think this is needed. It's not mentioned here