diff options
author | irregulator <irregulator@riseup.net> | 2014-05-28 17:35:12 +0300 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-07-01 16:05:41 -0700 |
commit | 791e22b136910ecfa204eb78be747baed2b02590 (patch) | |
tree | 4f47b0ee88d8ebd07d62ae840854fc7e0c435fa1 /puppet/modules/obfsproxy/files | |
parent | 08f4c51cbbf9a4307375278ab42d31aa65d57645 (diff) |
Make obfsproxy daemon bind to specific address rather than 0.0.0.0
If obfsproxy is spawned alongside eip service, make it listen to
the gateway_adress IP. If obfsproxy is running standalone listen
to ip_address.
Diffstat (limited to 'puppet/modules/obfsproxy/files')
-rwxr-xr-x | puppet/modules/obfsproxy/files/obfsproxy_init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/obfsproxy/files/obfsproxy_init b/puppet/modules/obfsproxy/files/obfsproxy_init index 629fea9f..69dbab41 100755 --- a/puppet/modules/obfsproxy/files/obfsproxy_init +++ b/puppet/modules/obfsproxy/files/obfsproxy_init @@ -32,7 +32,7 @@ else fi DAEMONARGS=" --log-min-severity=$LOG --log-file=$LOGFILE --data-dir=$DATDIR \ - $TRANSPORT $PARAM --dest=$DEST_IP:$DEST_PORT server 0.0.0.0:$PORT" + $TRANSPORT $PARAM --dest=$DEST_IP:$DEST_PORT server $BINDADDR:$PORT" start_obfsproxy() { start-stop-daemon --start --quiet --oknodo -m --pidfile $PIDFILE \ |