Files
applications/hedgedoc/config.json
ytshih 1d695c0e16
All checks were successful
Lint yaml / build-package (push) Successful in 3s
Fix(hedgedoc): minio remove ssl
2024-12-05 11:00:14 +00:00

52 lines
1.5 KiB
JSON

{
"production": {
"domain": "md.konchin.com",
"port": 8000,
"allowOrigin": ["md.konchin.com", "localhost"],
"protocolUseSSL": true,
"loglevel": "debug",
"debug": true,
"email": false,
"allowEmailRegister": false,
"defaultPermission": "limited",
"allowAnonymous": false,
"imageUploadType": "minio",
"hsts": {
"enable": true,
"maxAgeSeconds": 31536000,
"includeSubdomains": true,
"preload": true
},
"csp": {
"enable": true,
"upgradeInsecureRequests": "auto",
"addDefaults": true
},
"cookiePolicy": "lax",
"db": {
"username": "hedgedoc",
"password": "********",
"database": "hedgedoc",
"host": "pg.konchin.com",
"port": "5432",
"dialect": "postgres"
},
"ldap": {
"providerName": "konchin.com",
"url": "ldaps://ldap.konchin.com",
"searchBase": "ou=people,dc=konchin,dc=com",
"searchFilter": "(&(uid={{username}})(objectClass=person))",
"useridField": "uid",
"tlsca": "/etc/hedgedoc/rootca.pem"
},
"minio": {
"accessKey": "********",
"secretKey": "********",
"endPoint": "minio.konchin.com",
"port": 9000,
"secure": false
},
"s3bucket": "hedgedoc"
}
}