summaryrefslogtreecommitdiff
path: root/templates/onionbalance
diff options
context:
space:
mode:
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 -%>