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,9 +10,21 @@ defaults = {
'rspamd': {}, 'rspamd': {},
}, },
}, },
'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': { 'nginx': {
'vhosts': { 'vhosts': {
'rspamd.sublimity.de': { metadata.get('rspamd/hostname'): {
'content': 'nginx/proxy_pass.conf', 'content': 'nginx/proxy_pass.conf',
'context': { 'context': {
'target': 'http://localhost:11334', 'target': 'http://localhost:11334',
@ -20,11 +32,7 @@ defaults = {
}, },
}, },
}, },
'rspamd': { }
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
'ip_whitelist': [],
},
}
@metadata_reactor.provides( @metadata_reactor.provides(

View file

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