rspamd
This commit is contained in:
parent
973ce6673b
commit
d10c5a2743
2 changed files with 23 additions and 12 deletions
|
@ -10,9 +10,21 @@ defaults = {
|
|||
'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': {
|
||||
'vhosts': {
|
||||
'rspamd.sublimity.de': {
|
||||
metadata.get('rspamd/hostname'): {
|
||||
'content': 'nginx/proxy_pass.conf',
|
||||
'context': {
|
||||
'target': 'http://localhost:11334',
|
||||
|
@ -20,10 +32,6 @@ defaults = {
|
|||
},
|
||||
},
|
||||
},
|
||||
'rspamd': {
|
||||
'web_password': repo.vault.password_for(node.name + ' rspamd web password'),
|
||||
'ip_whitelist': [],
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -81,6 +81,9 @@
|
|||
'woodpipe.de',
|
||||
],
|
||||
},
|
||||
'rspamd': {
|
||||
'hostname': 'rspamd.sublimity.de',
|
||||
},
|
||||
'nginx': {
|
||||
'vhosts': {
|
||||
'cloud.sublimity.de': {
|
||||
|
|
Loading…
Reference in a new issue