diff options
author | Simon Rettberg | 2014-11-21 12:32:55 +0100 |
---|---|---|
committer | Simon Rettberg | 2014-11-21 12:32:55 +0100 |
commit | a1e528becf0cf203f9f449541666c065608dd6a6 (patch) | |
tree | a19fd16db697ff8b042d08bacaa70c1f6b1ed2d4 /extras | |
parent | Only handle proxy authentication requests in our authenticator (diff) | |
download | master-sync-shared-a1e528becf0cf203f9f449541666c065608dd6a6.tar.gz master-sync-shared-a1e528becf0cf203f9f449541666c065608dd6a6.tar.xz master-sync-shared-a1e528becf0cf203f9f449541666c065608dd6a6.zip |
Switch to TLSv1.2, move proxy config example file
Diffstat (limited to 'extras')
-rw-r--r-- | extras/config.example | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/extras/config.example b/extras/config.example new file mode 100644 index 0000000..a2c27cd --- /dev/null +++ b/extras/config.example @@ -0,0 +1,16 @@ +# This file is expected to be called "/opt/openslx/proxy/config" +# +# proxy configuration: +# 3 options for proxy configuration: AUTO = autmatically, YES, NO. If nothing is +# set, the default automatically will be choosen. +PROXY_CONF=AUTO +# If PROXY_CONF = YES some more information for connection are necessary: +# PROXY_ADDR = destination addres +PROXY_ADDR=1.2.3.4 + +# PROXY_PORT = port for proxy connection +PROXY_PORT=1080 + +# Username and password are optional, if empty, it is assumed that not necessary: +PROXY_USERNAME=test +PROXY_PASSWORD=password |