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
2019-11-28 02:06:28 +01:00

34 lines
856 B
Text

{
"production": {
"protocolUseSSL": true,
"domain": "__DOMAIN__",
"port": __PORT__,
"loglevel": "info",
"useCDN": false,
"allowGravatar": false,
"hsts": {
"enable": true,
"maxAgeSeconds": 31536000,
"includeSubdomains": true,
"preload": true
},
"csp": {
"enable": true,
"directives": {
},
"upgradeInsecureRequests": "auto",
"addDefaults": true,
"addDisqus": true,
"addGoogleAnalytics": true
},
"db": {
"username": "__DB_USER__",
"password": "__DB_PASS__",
"database": "__DB_NAME__",
"host": "localhost",
"port": "5432",
"dialect": "postgres"
}
}
}