85 lines
2 KiB
Python
85 lines
2 KiB
Python
database_password = repo.vault.password_for(f'{node.name} postgresql freescout').value
|
|
|
|
defaults = {
|
|
'apt': {
|
|
'packages': {
|
|
'git': {},
|
|
'php': {},
|
|
'php-pgsql': {},
|
|
'php-fpm': {},
|
|
'php-mbstring': {},
|
|
'php-xml': {},
|
|
'php-imap': {},
|
|
'php-zip': {},
|
|
'php-gd': {},
|
|
'php-curl': {},
|
|
'php-intl': {},
|
|
},
|
|
},
|
|
# 'freescout': {
|
|
# 'env': {
|
|
# 'APP_TIMEZONE': 'Europe/Berlin',
|
|
# 'DB_CONNECTION': 'pgsql',
|
|
# 'DB_HOST': '127.0.0.1',
|
|
# 'DB_PORT': '5432',
|
|
# 'DB_DATABASE': 'freescout',
|
|
# 'DB_USERNAME': 'freescout',
|
|
# 'DB_PASSWORD': database_password,
|
|
# 'APP_KEY': 'base64:' + repo.vault.random_bytes_as_base64_for(f'{node.name} freescout APP_KEY', length=32).value
|
|
# },
|
|
# },
|
|
'php': {
|
|
'php.ini': {
|
|
'cgi': {
|
|
'fix_pathinfo': '0',
|
|
},
|
|
},
|
|
},
|
|
'postgresql': {
|
|
'roles': {
|
|
'freescout': {
|
|
'password': database_password,
|
|
},
|
|
},
|
|
'databases': {
|
|
'freescout': {
|
|
'owner': 'freescout',
|
|
},
|
|
},
|
|
},
|
|
'zfs': {
|
|
'datasets': {
|
|
'tank/freescout': {
|
|
'mountpoint': '/opt/freescout',
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
# @metadata_reactor.provides(
|
|
# 'freescout/env/APP_URL',
|
|
# )
|
|
# def freescout(metadata):
|
|
# return {
|
|
# 'freescout': {
|
|
# 'env': {
|
|
# 'APP_URL': 'https://' + metadata.get('freescout/domain') + '/',
|
|
# },
|
|
# },
|
|
# }
|
|
|
|
|
|
@metadata_reactor.provides(
|
|
'nginx/vhosts',
|
|
)
|
|
def nginx(metadata):
|
|
return {
|
|
'nginx': {
|
|
'vhosts': {
|
|
metadata.get('freescout/domain'): {
|
|
'content': 'freescout/vhost.conf',
|
|
},
|
|
},
|
|
},
|
|
}
|