From 2ca8d3b32454287f0281bb1060de469b977205d6 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 25 Jan 2021 13:14:02 +0100 Subject: [PATCH] [Config] Added missing file --- flaschengeist/flaschengeist.toml | 102 +++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 flaschengeist/flaschengeist.toml diff --git a/flaschengeist/flaschengeist.toml b/flaschengeist/flaschengeist.toml new file mode 100644 index 0000000..0ec50a0 --- /dev/null +++ b/flaschengeist/flaschengeist.toml @@ -0,0 +1,102 @@ +# This is the example configuation and the default configuration +# All default values are uncommented, so set enabled ones to False to disabled them + +[FLASCHENGEIST] +# Select authentication provider (builtin: auth_plain, auth_ldap) +auth = "auth_plain" +# Enable if you run flaschengeist behind a proxy, e.g. nginx + gunicorn +#proxy = false +# Set root path, prefixes all routes +#root = /api +# Set secret key +secret_key = "V3ryS3cr3t" +# Domain used by frontend +#domain = "flaschengeist.local" + +[LOGGING] +# Uncomment to enable logging to a file +#file = "/tmp/flaschengeist-debug.log" +# Logging level, possible: DEBUG INFO WARNING ERROR +level = "WARNING" + +[DATABASE] +# user = "user" +# host = "127.0.0.1" +# password = "password" +# database = "database" + +[auth_plain] +enabled = true + +#[auth_ldap] +# enabled = true +# host = +# port = +# bind_dn = +# base_dn = +# secret = +# use_ssl = +# admin_dn = +# admin_dn = +# default_gid = + +[MESSAGES] +welcome_subject = "Welcome to Flaschengeist {name}" +welcome_text = ''' +Hello {name}! +Welcome to Flaschengeist! + +Your username is {username}, please set your password: +{password_link} +(If the link expires, please just use the Forgot-Password-function). + +Have fun :) +''' + +password_subject = "Flaschengeist - Password reset" +password_text = ''' +Hello {name}! +There was a password reset request for username: {username} + +To change your password, click on this link: +{link} +''' + +password_changed_subject = "Flaschengeist - Password changed" +password_changed_text = ''' +Hello {name}! +Your password was changed for username: {username} + +If this was not you, please contact the support. +''' + +################## +# PLUGINS # +################## + +[users] +# always enabled + +## allowed values: false, "managed", "public" +## false: Disable registration +## "managed": only users with matching permission are allowed to register new users +## "public": Also unauthenticated users can register an account +# registration = False + +############################ +# Configuration of plugins # +############################ +[mail] +# enabled = true +# SERVER = +# PORT = +# USER = +# PASSWORD = +# MAIL = +# SSL or STARTLS +# CRYPT = SSL + +[balance] +# enabled = true +# Enable a default limit, will be set if no other limit is set +# limit = -10.00