mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-06 04:51:33 -07:00
Update RPC endpoints
Allows credentials to be passed through the URL for apps like LunaSea
This commit is contained in:
parent
33f0687f82
commit
6a51a6aff3
1 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
# nzbget does not require a base url setting
|
# nzbget does not require a base url setting
|
||||||
|
|
||||||
location ^~ /nzbget {
|
location /nzbget {
|
||||||
# enable the next two lines for http auth
|
# enable the next two lines for http auth
|
||||||
#auth_basic "Restricted";
|
#auth_basic "Restricted";
|
||||||
#auth_basic_user_file /config/nginx/.htpasswd;
|
#auth_basic_user_file /config/nginx/.htpasswd;
|
||||||
|
@ -15,21 +15,21 @@ location ^~ /nzbget {
|
||||||
proxy_pass http://$upstream_nzbget:6789;
|
proxy_pass http://$upstream_nzbget:6789;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /nzbget/jsonrpc {
|
location ~ ^/nzbget(/.*)?/jsonrpc {
|
||||||
include /config/nginx/proxy.conf;
|
include /config/nginx/proxy.conf;
|
||||||
resolver 127.0.0.11 valid=30s;
|
resolver 127.0.0.11 valid=30s;
|
||||||
set $upstream_nzbget nzbget;
|
set $upstream_nzbget nzbget;
|
||||||
proxy_pass http://$upstream_nzbget:6789;
|
proxy_pass http://$upstream_nzbget:6789;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /nzbget/jsonprpc {
|
location ~ ^/nzbget(/.*)?/jsonprpc {
|
||||||
include /config/nginx/proxy.conf;
|
include /config/nginx/proxy.conf;
|
||||||
resolver 127.0.0.11 valid=30s;
|
resolver 127.0.0.11 valid=30s;
|
||||||
set $upstream_nzbget nzbget;
|
set $upstream_nzbget nzbget;
|
||||||
proxy_pass http://$upstream_nzbget:6789;
|
proxy_pass http://$upstream_nzbget:6789;
|
||||||
}
|
}
|
||||||
|
|
||||||
location ^~ /nzbget/xmlrpc {
|
location ~ ^/nzbget(/.*)?/xmlrpc {
|
||||||
include /config/nginx/proxy.conf;
|
include /config/nginx/proxy.conf;
|
||||||
resolver 127.0.0.11 valid=30s;
|
resolver 127.0.0.11 valid=30s;
|
||||||
set $upstream_nzbget nzbget;
|
set $upstream_nzbget nzbget;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue