bundlewrap/bundles/roundcube/metadata.py
mwiegand a15bdfa95f wip
2021-07-05 22:42:42 +02:00

68 lines
1.8 KiB
Python

database_password = repo.vault.password_for(f'{node.name} postgresql roundcube')
defaults = {
'apt': {
'packages': {
'php': {},
'php-auth-sasl': {},
'php-cli': {},
'php-fpm': {},
'php-imagick': {},
'php-intl': {},
'php-mail-mime': {},
'php-mbstring': {},
'php-net-idna2': {},
'php-net-smtp': {},
'php-net-socket': {},
'php-pear': {},
'php-pgsql': {},
'php-xml': {},
'php-zip': {},
},
},
'roundcube': {
'database': {
'provider': 'pgsql',
'host': 'localhost',
'name': 'roundcube',
'user': 'roundcube',
'password': database_password,
},
'plugins': [
'managesieve',
'password',
],
'des_key': repo.vault.password_for(f'{node.name} roundcube des_key'),
},
'postgresql': {
'roles': {
'roundcube': {
'password': database_password,
},
},
'databases': {
'roundcube': {
'owner': 'roundcube',
},
},
},
}
@metadata_reactor.provides(
'nginx/vhosts'
)
def vhost(metadata):
return {
'nginx': {
'vhosts': {
metadata.get('mailserver/hostname'): {
'root': '/opt/roundcube',
'location ~ \.php$': {
'include': 'fastcgi.conf',
'fastcgi_split_path_info': '^(.+\.php)(/.+)$',
'fastcgi_pass': f"unix:/run/php/php{metadata.get('php/version')}-fpm.sock",
},
},
},
},
}