summaryrefslogtreecommitdiff
path: root/templates/onionbalance
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollito@riseup.net>2018-03-06 17:29:54 +0000
committerLouis-Philippe VĂ©ronneau <pollito@riseup.net>2018-03-06 17:29:54 +0000
commit7c40929d8a2a9438ccd883e9d856d526b852da8c (patch)
treed8529a383482db6cd716c16074e6b798c1069e7b /templates/onionbalance
parent228ae4a53999dbc49fa7c4d2883468dde10f19fb (diff)
parent6ebebe3ab04e8ba3d4b651e49012646046642160 (diff)
Merge branch 'immerda-merge' into 'master'
Immerda merge Closes #2 See merge request shared-puppet-modules-group/tor!19
Diffstat (limited to 'templates/onionbalance')
-rw-r--r--templates/onionbalance/Debian.torrc.erb5
-rw-r--r--templates/onionbalance/RedHat.torrc.erb13
-rw-r--r--templates/onionbalance/config.yaml.erb10
3 files changed, 28 insertions, 0 deletions
diff --git a/templates/onionbalance/Debian.torrc.erb b/templates/onionbalance/Debian.torrc.erb
new file mode 100644
index 0000000..4b1afc4
--- /dev/null
+++ b/templates/onionbalance/Debian.torrc.erb
@@ -0,0 +1,5 @@
+# Tor config for the onionbalance management server
+# ---
+# The onionbalance service must be able to access the Tor control port.
+ControlPort 9051
+SocksPort 0
diff --git a/templates/onionbalance/RedHat.torrc.erb b/templates/onionbalance/RedHat.torrc.erb
new file mode 100644
index 0000000..023748b
--- /dev/null
+++ b/templates/onionbalance/RedHat.torrc.erb
@@ -0,0 +1,13 @@
+# Tor config for the onionbalance management server
+# ---
+# The onionbalance service must be able to access the Tor control port.
+
+DataDirectory /var/lib/tor/onionbalance-data
+
+ControlPort 9051
+CookieAuthentication 1
+SocksPort 0
+
+CookieAuthFileGroupReadable 1
+CookieAuthFile /run/tor/onionbalance.control.authcookie
+
diff --git a/templates/onionbalance/config.yaml.erb b/templates/onionbalance/config.yaml.erb
new file mode 100644
index 0000000..b1d4d80
--- /dev/null
+++ b/templates/onionbalance/config.yaml.erb
@@ -0,0 +1,10 @@
+# OnionBalance Config File
+services:
+<% @services.keys.sort.each do |key| -%>
+ - key: /etc/onionbalance/<%= key %>.key
+ instances:
+<% (@services[key].keys - ['_key_content']).sort.each do |inst| -%>
+ - address: <%= @services[key][inst] %>
+ name: <%= inst %>
+<% end -%>
+<% end -%>