34 lines
1 KiB
TOML
34 lines
1 KiB
TOML
|
debug = true
|
||
|
allow_registration = true
|
||
|
source_code = "https://github.com/mcaptcha/survey"
|
||
|
password = "password"
|
||
|
|
||
|
[server]
|
||
|
# Please set a unique value, your kaizen instance's security depends on this being
|
||
|
# unique
|
||
|
cookie_secret = "8ce364dab188452ffa76c3e1869be5d40dcb9db4826b7b78a3e6ce1a8ca19d32"
|
||
|
# The port at which you want authentication to listen to
|
||
|
# takes a number, choose from 1000-10000 if you dont know what you are doing
|
||
|
port = 7000
|
||
|
#IP address. Enter 0.0.0.0 to listen on all availale addresses
|
||
|
ip= "0.0.0.0"
|
||
|
# enter your hostname, eg: example.com
|
||
|
domain = "localhost"
|
||
|
allow_registration = true
|
||
|
proxy_has_tls = false
|
||
|
|
||
|
[database]
|
||
|
# This section deals with the database location and how to access it
|
||
|
# Please note that at the moment, we have support for only postgresqa.
|
||
|
# Example, if you are Batman, your config would be:
|
||
|
# hostname = "batcave.org"
|
||
|
# port = "5432"
|
||
|
# username = "batman"
|
||
|
# password = "somereallycomplicatedBatmanpassword"
|
||
|
hostname = "localhost"
|
||
|
port = "5432"
|
||
|
username = "postgres"
|
||
|
password = "password"
|
||
|
name = "postgres"
|
||
|
pool = 4
|