mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Implemented mailu draft
This commit is contained in:
18
roles/docker-mailu/templates/domain.conf.j2
Normal file
18
roles/docker-mailu/templates/domain.conf.j2
Normal 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'%}
|
||||
}
|
Reference in New Issue
Block a user