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': {}, 'rspamd': {},
}, },
}, },
'nginx': { 'rspamd': {
'vhosts': { 'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
'rspamd.sublimity.de': { 'ip_whitelist': set(),
'content': 'nginx/proxy_pass.conf', },
'context': { }
'target': 'http://localhost:11334',
@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( @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': {