doveauth-http: deploying HTTP route for account creation

This commit is contained in:
missytake
2023-12-01 18:32:45 +01:00
parent ccfbb59e17
commit fbcf071e89
5 changed files with 26 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ def _install_chatmaild() -> None:
for fn in (
"doveauth",
"doveauth-http",
"filtermail",
):
files.put(

View File

@@ -42,6 +42,10 @@ http {
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
location /new_email {
proxy_pass http://localhost:3691/;
}
}
}