This commit is contained in:
mwiegand 2021-07-05 23:07:14 +02:00
parent a1e2101838
commit b8127713d9
5 changed files with 58 additions and 21 deletions

View file

@ -63,18 +63,20 @@ defaults = {
}, },
} }
# @metadata_reactor.provides(
# 'nginx/vhosts/nextcloud/domain', @metadata_reactor.provides(
# ) 'nginx/vhosts'
# def nginx(metadata): )
# return { def vhost(metadata):
# 'nginx': { return {
# 'vhosts': { 'nginx': {
# 'nextcloud': { 'vhosts': {
# 'domain': metadata.get('nextcloud/domain'), metadata.get('nextcloud/hostname'): {
# 'webroot': '/opt/nextcloud', 'root': '/opt/nextcloud',
# 'php': True, 'include': [
# }, 'php.conf',
# }, ],
# }, },
# } },
},
}

View file

@ -28,6 +28,12 @@ files = {
'svc_systemd:nginx:restart', 'svc_systemd:nginx:restart',
}, },
}, },
'/etc/nginx/sites-available': {
'delete': True,
},
'/etc/nginx/sites-enabled': {
'delete': True,
},
} }
actions = { 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 { for name, config in {
**node.metadata.get('nginx/default_vhosts'), **node.metadata.get('nginx/default_vhosts'),
**node.metadata.get('nginx/vhosts'), **node.metadata.get('nginx/vhosts'),

View file

@ -47,9 +47,28 @@ defaults = {
}, },
}, },
'vhosts': {}, '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( @metadata_reactor.provides(
'nginx/vhosts', 'nginx/vhosts',

View file

@ -57,11 +57,9 @@ def vhost(metadata):
'vhosts': { 'vhosts': {
metadata.get('mailserver/hostname'): { metadata.get('mailserver/hostname'): {
'root': '/opt/roundcube', 'root': '/opt/roundcube',
'location ~ \.php$': { 'include': [
'include': 'fastcgi.conf', 'php.conf',
'fastcgi_split_path_info': '^(.+\.php)(/.+)$', ],
'fastcgi_pass': f"unix:/run/php/php{metadata.get('php/version')}-fpm.sock",
},
}, },
}, },
}, },

View file

@ -17,7 +17,7 @@
], ],
'metadata': { 'metadata': {
'nextcloud': { 'nextcloud': {
'domain': 'cloud.sublimity.de', 'hostname': 'cloud.sublimity.de',
'version': '21.0.0', 'version': '21.0.0',
}, },
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae', 'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',