bundle/hedgedoc remove quoting inconsistencies
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
All checks were successful
kunsi/bundlewrap/pipeline/head This commit looks good
This commit is contained in:
parent
1f6da4f15e
commit
77a14a0017
1 changed files with 19 additions and 19 deletions
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue