summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLV-426 <lv-426@taproot.org.il>2015-04-29 18:01:30 +0300
committerLV-426 <lv-426@taproot.org.il>2015-04-29 18:01:30 +0300
commit0bf3b650bbb6e521c8fd5c6287903aaff633bc0f (patch)
tree88f3a48b1cde93cada365ab9ea21eb9b3faeaf2b
parentb83e7d926f9779b5a7755b603db638f8e02fc1f0 (diff)
rz-mux-tool: rhizi-server config template
-rw-r--r--res/rz-mux/rhizi-conf-template.d/rhizi-server.conf.jinja70
1 files changed, 70 insertions, 0 deletions
diff --git a/res/rz-mux/rhizi-conf-template.d/rhizi-server.conf.jinja b/res/rz-mux/rhizi-conf-template.d/rhizi-server.conf.jinja
new file mode 100644
index 00000000..f9f3c781
--- /dev/null
+++ b/res/rz-mux/rhizi-conf-template.d/rhizi-server.conf.jinja
@@ -0,0 +1,70 @@
+# -----------------------------------------------------------------------------
+# Sample Rhizi configuration - copy this to rhizi-server.conf
+#
+# Rhizi configuration values are documented in source code.
+#
+
+# -----------------------------------------------------------------------------
+# General
+#
+root_path = {{ root_path }}
+
+development_mode = True
+static_url_path = /static
+
+# -----------------------------------------------------------------------------
+# Network
+#
+listen_address = 127.0.0.1
+listen_port = {{ rz_port__http }}
+reverse_proxy_host = {{ domain_name }}.rhizi.net
+reverse_proxy_port = 80
+
+# -----------------------------------------------------------------------------
+# Database
+#
+neo4j_url = http://127.0.0.1:{{ neo4j_port__http }}
+
+# -----------------------------------------------------------------------------
+# Logging
+#
+log_level = debug
+log_path = /var/log/rhizi-server__{{ domain_name }}.log
+
+# -----------------------------------------------------------------------------
+# Flask Configuration
+#
+SECRET_KEY = {{ rz_server_secret }}
+
+# use with HTTPS: SESSION_COOKIE_SECURE = True
+
+# -----------------------------------------------------------------------------
+# Mail
+#
+mta_host = 127.0.0.1
+mta_port = 25
+mail_default_sender = rhizi@localhost
+feedback_recipient = feedback@localhost
+
+# -----------------------------------------------------------------------------
+# Security
+#
+access_control = True
+user_db_path = {{ user_db_path }}
+acl__singup__email_domain =
+
+# -----------------------------------------------------------------------------
+# Client settings
+#
+optimized_main = False
+
+# -----------------------------------------------------------------------------
+# Rhizi
+#
+rzdoc__mainpage_name = Welcome Rhizi
+rzdoc__name__max_length = 256
+
+# -----------------------------------------------------------------------------
+# Other
+#
+DEBUG = True