1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/codimd_ynh.git synced 2024-09-03 18:16:32 +02:00
codimd_ynh/conf/config.json.example

34 lines
888 B
Text
Raw Normal View History

2018-11-21 16:35:21 +01:00
{
"production": {
2019-11-28 02:05:34 +01:00
"protocolUseSSL": true,
"domain": "__DOMAIN__",
"port": __PORT__,
"loglevel": "info",
"useCDN": false,
"allowGravatar": false,
2020-05-21 12:49:24 +02:00
"allowPDFExport": false,
2018-11-21 16:35:21 +01:00
"hsts": {
"enable": true,
2019-11-28 02:05:34 +01:00
"maxAgeSeconds": 31536000,
2018-11-21 16:35:21 +01:00
"includeSubdomains": true,
"preload": true
},
"csp": {
"enable": true,
"directives": {
},
"upgradeInsecureRequests": "auto",
"addDefaults": true,
"addDisqus": true,
2020-05-21 12:49:24 +02:00
"addGoogleAnalytics": false
2018-11-21 16:35:21 +01:00
},
"db": {
2018-11-21 17:26:37 +01:00
"username": "__DB_USER__",
"password": "__DB_PASS__",
"database": "__DB_NAME__",
2018-11-21 16:35:21 +01:00
"host": "localhost",
2020-05-23 09:14:00 +02:00
"port": "5432",
"dialect": "postgres"
2020-05-21 14:24:25 +02:00
}
2018-11-21 16:35:21 +01:00
}
}