forked from linuxserver/reverse-proxy-confs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qbittorrent.subfolder.conf.sample
78 lines (64 loc) · 2.32 KB
/
qbittorrent.subfolder.conf.sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# qbittorrent does not require a base url setting
location /qbittorrent {
return 301 $scheme://$host/qbittorrent/;
}
location ^~ /qbittorrent/ {
# enable the next two lines for http auth
#auth_basic "Restricted";
#auth_basic_user_file /config/nginx/.htpasswd;
# enable the next two lines for ldap auth, also customize and enable ldap.conf in the default conf
#auth_request /auth;
#error_page 401 =200 /login;
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}
location ^~ /qbittorrent/api {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}
location ^~ /qbittorrent/command {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}
location ^~ /qbittorrent/query {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}
location ^~ /qbittorrent/login {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}
location ^~ /qbittorrent/sync {
include /config/nginx/proxy.conf;
resolver 127.0.0.11 valid=30s;
set $upstream_qbittorrent qbittorrent;
rewrite /qbittorrent(.*) $1 break;
proxy_pass http://$upstream_qbittorrent:8080;
proxy_set_header Referer '';
proxy_set_header Host $upstream_qbittorrent:8080;
}