bundle/hedgedoc remove quoting inconsistencies
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good

This commit is contained in:
Sophie Schiller 2021-09-11 20:24:10 +02:00
parent 1f6da4f15e
commit 77a14a0017
Signed by: sophie
GPG key ID: 569676CA63734FEB

View file

@ -6,27 +6,27 @@ defaults = {
}, },
'hedgedoc': { 'hedgedoc': {
'config': { 'config': {
"production": { 'production': {
"loglevel": "info", 'loglevel': 'info',
"hsts": { 'hsts': {
"enable": False, 'enable': False,
}, },
"csp": { 'csp': {
"enable": True, 'enable': True,
"directives": {}, 'directives': {},
"upgradeInsecureRequests": "auto", 'upgradeInsecureRequests': 'auto',
"addDefaults": True, 'addDefaults': True,
"addDisqus": False, 'addDisqus': False,
"addGoogleAnalytics": False 'addGoogleAnalytics': False
}, },
"cookiePolicy": "lax", 'cookiePolicy': 'lax',
"db": { 'db': {
"username": "hedgedoc", 'username': 'hedgedoc',
"password": repo.vault.password_for('{} postgresql hedgedoc'.format(node.name)), 'password': repo.vault.password_for('{} postgresql hedgedoc'.format(node.name)),
"database": "hedgedoc", 'database': 'hedgedoc',
"host": "localhost", 'host': 'localhost',
"port": "5432", 'port': '5432',
"dialect": "postgres" 'dialect': 'postgres'
}, },
'imageUploadType': 'filesystem', 'imageUploadType': 'filesystem',
'uploadsPath': '/var/opt/hedgedoc', 'uploadsPath': '/var/opt/hedgedoc',