diff options
author | rofl0r <retnyg@gmx.net> | 2018-02-23 20:21:32 +0000 |
---|---|---|
committer | rofl0r <rofl0r@users.noreply.github.com> | 2018-02-25 15:13:45 +0000 |
commit | bf76aeeba1cf868ebe4d2f28976abb75c48031b0 (patch) | |
tree | 779316ce7d9bae67cbc54122d530c6f51d761289 /etc | |
parent | 4d9891e59e7c7ee77137fcdb3d02798af96811ff (diff) |
implement HTTP basic auth for upstream proxies
loosely based on @valenbg1's code from PR #38
closes #38
closes #96
Diffstat (limited to 'etc')
-rw-r--r-- | etc/tinyproxy.conf.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/tinyproxy.conf.in b/etc/tinyproxy.conf.in index c43266b..ac16efe 100644 --- a/etc/tinyproxy.conf.in +++ b/etc/tinyproxy.conf.in @@ -146,6 +146,9 @@ LogLevel Info # upstream testproxy:8008 ".our_testbed.example.com" # upstream testproxy:8008 "192.168.128.0/255.255.254.0" # +# # upstream proxy using basic authentication +# upstream user:pass@testproxy:8008 ".test.domain.invalid" +# # # no upstream proxy for internal websites and unqualified hosts # no upstream ".internal.example.com" # no upstream "www.example.com" |