Implemented mailu draft

This commit is contained in:
2020-12-27 16:16:12 +01:00
parent 46837c3eff
commit c793e01c2d
4 changed files with 37 additions and 10 deletions

View File

@@ -0,0 +1,18 @@
server
{
server_name {{domain}};
listen 443 ssl http2;
listen [::]:443 ssl http2;
{% with http_port=https_port %}
{% include 'roles/native-nginx-docker-proxy/templates/proxy_pass.conf.j2'%}
{% endwith %}
}
server
{
server_name {{domain}};
listen 80;
listen [::]:80;
{% include 'roles/native-nginx-docker-proxy/templates/proxy_pass.conf.j2'%}
}