diff options
author | irregulator <irregulator@riseup.net> | 2014-05-20 23:20:58 +0300 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-07-01 16:05:40 -0700 |
commit | 54fcafe131c411a49e4277cd0d14c6ea20044203 (patch) | |
tree | 9c1dfd9a8d789415d12190922646646486b40f42 /puppet/modules/obfsproxy/templates | |
parent | 82dbbf823d6637082f63e55ed1d2f57a11e0d481 (diff) |
Initial commit for obfsproxy server feature in platform
Diffstat (limited to 'puppet/modules/obfsproxy/templates')
-rw-r--r-- | puppet/modules/obfsproxy/templates/etc_conf.erb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/puppet/modules/obfsproxy/templates/etc_conf.erb b/puppet/modules/obfsproxy/templates/etc_conf.erb new file mode 100644 index 00000000..3313b326 --- /dev/null +++ b/puppet/modules/obfsproxy/templates/etc_conf.erb @@ -0,0 +1,11 @@ +TRANSPORT=<%= @transport %> +PORT=<%= @port %> +DEST_IP=<%= @dest_ip %> +DEST_PORT=<%= @dest_port %> +<% if @transport == "scramblesuit" %> +PARAM=--password=<%= @param %> +<% else %> +PARAM=<%= @param %> +<% end %> +LOG=info + |