From b8127713d910f7159fc79c0985158f8d516b9688 Mon Sep 17 00:00:00 2001 From: mwiegand Date: Mon, 5 Jul 2021 23:07:14 +0200 Subject: [PATCH] wip --- bundles/nextcloud/metadata.py | 32 +++++++++++++++++--------------- bundles/nginx/items.py | 18 ++++++++++++++++++ bundles/nginx/metadata.py | 19 +++++++++++++++++++ bundles/roundcube/metadata.py | 8 +++----- nodes/htz.mails.py | 2 +- 5 files changed, 58 insertions(+), 21 deletions(-) diff --git a/bundles/nextcloud/metadata.py b/bundles/nextcloud/metadata.py index bc427a9..c744591 100644 --- a/bundles/nextcloud/metadata.py +++ b/bundles/nextcloud/metadata.py @@ -63,18 +63,20 @@ defaults = { }, } -# @metadata_reactor.provides( -# 'nginx/vhosts/nextcloud/domain', -# ) -# def nginx(metadata): -# return { -# 'nginx': { -# 'vhosts': { -# 'nextcloud': { -# 'domain': metadata.get('nextcloud/domain'), -# 'webroot': '/opt/nextcloud', -# 'php': True, -# }, -# }, -# }, -# } + +@metadata_reactor.provides( + 'nginx/vhosts' +) +def vhost(metadata): + return { + 'nginx': { + 'vhosts': { + metadata.get('nextcloud/hostname'): { + 'root': '/opt/nextcloud', + 'include': [ + 'php.conf', + ], + }, + }, + }, + } diff --git a/bundles/nginx/items.py b/bundles/nginx/items.py index 54d776c..b8cc63c 100644 --- a/bundles/nginx/items.py +++ b/bundles/nginx/items.py @@ -28,6 +28,12 @@ files = { 'svc_systemd:nginx:restart', }, }, + '/etc/nginx/sites-available': { + 'delete': True, + }, + '/etc/nginx/sites-enabled': { + 'delete': True, + }, } actions = { @@ -46,6 +52,18 @@ svc_systemd = { }, } +for name, config in node.metadata.get('nginx/includes').items(): + files[f'/etc/nginx/{name}.conf'] = { + 'content': repo.libs.nginx.render_config(config), + 'needed_by': { + 'svc_systemd:nginx', + 'svc_systemd:nginx:restart', + }, + 'triggers': { + 'svc_systemd:nginx:restart', + }, + } + for name, config in { **node.metadata.get('nginx/default_vhosts'), **node.metadata.get('nginx/vhosts'), diff --git a/bundles/nginx/metadata.py b/bundles/nginx/metadata.py index 4947b46..3f1030c 100644 --- a/bundles/nginx/metadata.py +++ b/bundles/nginx/metadata.py @@ -47,9 +47,28 @@ defaults = { }, }, 'vhosts': {}, + 'includes': {}, }, } +@metadata_reactor.provides( + 'nginx/includes/php', +) +def php(metadata): + return { + 'nginx': { + 'includes': { + 'php': { + 'location ~ \.php$': { + 'include': 'fastcgi.conf', + 'fastcgi_split_path_info': '^(.+\.php)(/.+)$', + 'fastcgi_pass': f"unix:/run/php/php{metadata.get('php/version')}-fpm.sock", + }, + }, + }, + }, + } + @metadata_reactor.provides( 'nginx/vhosts', diff --git a/bundles/roundcube/metadata.py b/bundles/roundcube/metadata.py index 4ee9cca..38612a6 100644 --- a/bundles/roundcube/metadata.py +++ b/bundles/roundcube/metadata.py @@ -57,11 +57,9 @@ def vhost(metadata): '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", - }, + 'include': [ + 'php.conf', + ], }, }, }, diff --git a/nodes/htz.mails.py b/nodes/htz.mails.py index 69e0dfc..6b47232 100644 --- a/nodes/htz.mails.py +++ b/nodes/htz.mails.py @@ -17,7 +17,7 @@ ], 'metadata': { 'nextcloud': { - 'domain': 'cloud.sublimity.de', + 'hostname': 'cloud.sublimity.de', 'version': '21.0.0', }, 'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',