39 lines
902 B
Python
39 lines
902 B
Python
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',
|
|
},
|
|
},
|
|
}
|
|
|
|
svc_systemd = {
|
|
'nginx': {
|
|
'needs': {
|
|
'pkg_apt:nginx',
|
|
},
|
|
},
|
|
}
|
|
|
|
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',
|
|
},
|
|
}
|