wip
This commit is contained in:
parent
a1e2101838
commit
b8127713d9
5 changed files with 58 additions and 21 deletions
|
@ -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',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -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'),
|
||||
|
|
|
@ -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',
|
||||
|
|
|
@ -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',
|
||||
],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
],
|
||||
'metadata': {
|
||||
'nextcloud': {
|
||||
'domain': 'cloud.sublimity.de',
|
||||
'hostname': 'cloud.sublimity.de',
|
||||
'version': '21.0.0',
|
||||
},
|
||||
'id': 'ea29bdf0-0b47-4bf4-8346-67d60c9dc4ae',
|
||||
|
|
Loading…
Reference in a new issue