This commit is contained in:
mwiegand 2021-10-16 15:42:35 +02:00
parent 973ce6673b
commit d10c5a2743
2 changed files with 23 additions and 12 deletions

View file

@ -10,21 +10,29 @@ defaults = {
'rspamd': {},
},
},
'nginx': {
'vhosts': {
'rspamd.sublimity.de': {
'content': 'nginx/proxy_pass.conf',
'context': {
'target': 'http://localhost:11334',
'rspamd': {
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
'ip_whitelist': set(),
},
}
@metadata_reactor.provides(
'nginx/vhosts',
)
def nginx_vhost(metadata):
return {
'nginx': {
'vhosts': {
metadata.get('rspamd/hostname'): {
'content': 'nginx/proxy_pass.conf',
'context': {
'target': 'http://localhost:11334',
},
},
},
},
},
'rspamd': {
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
'ip_whitelist': [],
},
}
}
@metadata_reactor.provides(

View file

@ -81,6 +81,9 @@
'woodpipe.de',
],
},
'rspamd': {
'hostname': 'rspamd.sublimity.de',
},
'nginx': {
'vhosts': {
'cloud.sublimity.de': {