mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
change mailserver database creation
This commit is contained in:
parent
749e9dc5b1
commit
e256872700
3 changed files with 16 additions and 1 deletions
|
@ -86,6 +86,7 @@ nginx_sites:
|
|||
- name: 'www.c3doc.de'
|
||||
- name: 'wtf-kooperative.de'
|
||||
- name: 'www.wtf-kooperative.de'
|
||||
- name: 'cyber.yt'
|
||||
|
||||
acme_notification_email: "{{ _acme_notification_email }}"
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 45cad04009b03f11fc901466bf690e42fc16ad19
|
||||
Subproject commit 1e620725dfca7f63ee7dfd1cf4648757ad2dd93f
|
14
templates/files/nginx/sites/cyber.yt_tls.conf
Normal file
14
templates/files/nginx/sites/cyber.yt_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name cyber.yt;
|
||||
|
||||
include snippets/tls_parameters_{{ site.name }}.snippet.conf;
|
||||
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
|
||||
include snippets/logging_{{ site.name }}.snippet.conf;
|
||||
|
||||
location / {
|
||||
return 418;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue