2020-06-01 09:16:22 +00:00
|
|
|
# TODO rework this to support specifying a certificate instead of
|
|
|
|
# relying on letsencrypt for the specific domain (for example to
|
|
|
|
# support wildcard certificates
|
|
|
|
assert node.has_bundle('letsencrypt'), 'nginx needs letsencrypt'
|
|
|
|
|
2020-04-13 07:52:26 +00:00
|
|
|
files = {
|
|
|
|
'/etc/nginx/nginx.conf': {
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': node.metadata['nginx'],
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nginx:restart',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'/etc/nginx/sites/000-port80.conf': {
|
|
|
|
'source': 'port80.conf',
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nginx:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-06-01 11:35:54 +00:00
|
|
|
'/etc/nginx/sites/stub_status': {
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nginx:restart',
|
|
|
|
},
|
|
|
|
},
|
2020-04-13 07:52:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
svc_systemd = {
|
|
|
|
'nginx': {
|
|
|
|
'needs': {
|
|
|
|
'pkg_apt:nginx',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2020-06-01 08:52:52 +00:00
|
|
|
|
|
|
|
for domain, config in node.metadata.get('nginx', {}).get('vhosts', {}).items():
|
|
|
|
files['/etc/nginx/sites/{}'.format(domain)] = {
|
|
|
|
'source': 'site_template',
|
|
|
|
'content_type': 'mako',
|
|
|
|
'context': {
|
|
|
|
'domain': domain,
|
|
|
|
**config
|
|
|
|
},
|
|
|
|
'needs': {
|
|
|
|
'action:letsencrypt_update_certificates',
|
|
|
|
},
|
|
|
|
'triggers': {
|
|
|
|
'svc_systemd:nginx:restart',
|
|
|
|
},
|
|
|
|
}
|