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',
# )
# 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',
],
},
},
},
}

View file

@ -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'),

View file

@ -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',

View file

@ -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',
],
},
},
},

View file

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