mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
waffeleskallation
This commit is contained in:
parent
187d86624d
commit
ecc7f7f0ef
4 changed files with 45 additions and 0 deletions
|
@ -40,6 +40,9 @@ nginx_sites:
|
|||
- name: 'www.c3woc.eu'
|
||||
- name: 'c3woc.cn'
|
||||
- name: 'www.c3woc.cn'
|
||||
- name: 'waffeln.eskalieren.jetzt'
|
||||
- name: 'waffeln.fehlerfrei.org'
|
||||
- name: 'www.waffeln.fehlerfrei.org'
|
||||
- name: 'l3d.space'
|
||||
- name: 'www.l3d.space'
|
||||
- name: 'ansible.l3d.space'
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name waffeln.eskalieren.jetzt;
|
||||
|
||||
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 308 https://c3woc.de$request_uri;
|
||||
}
|
||||
}
|
14
templates/files/nginx/sites/waffeln.fehlerfrei.org_tls.conf
Normal file
14
templates/files/nginx/sites/waffeln.fehlerfrei.org_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name waffeln.fehlerfrei.org;
|
||||
|
||||
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 308 https://c3woc.de$request_uri;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name www.waffeln.fehlerfrei.org;
|
||||
|
||||
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 308 https://c3woc.de$request_uri;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue