63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
{
|
|
asset_cache: false,
|
|
gitlab_webhook_token: 'default',
|
|
app: {
|
|
listen_addr: '127.0.0.1',
|
|
port: 4899,
|
|
public_url: "http://127.0.0.1:4899",
|
|
public_websocket_url: "ws://127.0.0.1:4899",
|
|
name: 'Example App',
|
|
contact_email: 'contact@example.net',
|
|
display_email_warning: true,
|
|
},
|
|
auth: {
|
|
// Registered accounts need to be approved by an administrator
|
|
approval_mode: false,
|
|
// 30 days
|
|
name_change_wait_period: 2592000000,
|
|
},
|
|
log: {
|
|
level: "DEBUG",
|
|
verbose: true,
|
|
db_level: "ERROR",
|
|
},
|
|
magic_link: {
|
|
validity_period: 20,
|
|
},
|
|
mail: {
|
|
host: "127.0.0.1",
|
|
port: "1025",
|
|
secure: false,
|
|
username: "",
|
|
password: "",
|
|
allow_invalid_tls: true,
|
|
from: 'contact@example.net',
|
|
from_name: 'Example App',
|
|
},
|
|
mysql: {
|
|
connectionLimit: 10,
|
|
host: "127.0.0.1",
|
|
user: "root",
|
|
password: "",
|
|
database: "swaf",
|
|
create_database_automatically: false,
|
|
},
|
|
redis: {
|
|
host: "127.0.0.1",
|
|
port: 6379,
|
|
prefix: 'swaf',
|
|
},
|
|
session: {
|
|
secret: 'default',
|
|
cookie: {
|
|
secure: false,
|
|
// 1 year
|
|
maxAge: 31557600000,
|
|
},
|
|
},
|
|
view: {
|
|
cache: false,
|
|
dev: true,
|
|
},
|
|
}
|