This commit is contained in:
mwiegand 2021-06-13 20:33:09 +02:00
parent cd41ed503b
commit c51d226f89
2 changed files with 6 additions and 4 deletions

View file

@ -30,10 +30,10 @@ LANDING_PAGE = explore
[database]
DB_TYPE = postgres
HOST = ${database.get('host', 'localhost')}:5432
NAME = ${database['database']}
USER = ${database['username']}
PASSWD = ${database['password']}
HOST = ${database.get('host')}:${database.get('port')}
NAME = ${database.get('database')}
USER = ${database.get('username')}
PASSWD = ${database.get('password')}
SSL_MODE = disable
LOG_SQL = false

View file

@ -1,6 +1,8 @@
defaults = {
'gitea': {
'database': {
'host': 'localhost',
'port': '5432',
'username': 'gitea',
'password': repo.vault.password_for('{} postgresql gitea'.format(node.name)),
'database': 'gitea',