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': {
'config': {
"production": {
"loglevel": "info",
"hsts": {
"enable": False,
'production': {
'loglevel': 'info',
'hsts': {
'enable': False,
},
"csp": {
"enable": True,
"directives": {},
"upgradeInsecureRequests": "auto",
"addDefaults": True,
"addDisqus": False,
"addGoogleAnalytics": False
'csp': {
'enable': True,
'directives': {},
'upgradeInsecureRequests': 'auto',
'addDefaults': True,
'addDisqus': False,
'addGoogleAnalytics': False
},
"cookiePolicy": "lax",
"db": {
"username": "hedgedoc",
"password": repo.vault.password_for('{} postgresql hedgedoc'.format(node.name)),
"database": "hedgedoc",
"host": "localhost",
"port": "5432",
"dialect": "postgres"
'cookiePolicy': 'lax',
'db': {
'username': 'hedgedoc',
'password': repo.vault.password_for('{} postgresql hedgedoc'.format(node.name)),
'database': 'hedgedoc',
'host': 'localhost',
'port': '5432',
'dialect': 'postgres'
},
'imageUploadType': 'filesystem',
'uploadsPath': '/var/opt/hedgedoc',