mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
Add c3woc.com
This commit is contained in:
parent
38175402aa
commit
05ed42d576
3 changed files with 30 additions and 0 deletions
|
@ -77,6 +77,8 @@ nginx_sites:
|
||||||
- name: 'www.c3woc.org'
|
- name: 'www.c3woc.org'
|
||||||
- name: 'c3woc.eu'
|
- name: 'c3woc.eu'
|
||||||
- name: 'www.c3woc.eu'
|
- name: 'www.c3woc.eu'
|
||||||
|
- name: 'c3woc.com'
|
||||||
|
- name: 'www.c3woc.com'
|
||||||
- name: 'c3woc.cn'
|
- name: 'c3woc.cn'
|
||||||
- name: 'www.c3woc.cn'
|
- name: 'www.c3woc.cn'
|
||||||
- name: 'waffeln.eskalieren.jetzt'
|
- name: 'waffeln.eskalieren.jetzt'
|
||||||
|
|
14
templates/files/nginx/sites/c3woc.com_tls.conf
Normal file
14
templates/files/nginx/sites/c3woc.com_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name c3woc.com;
|
||||||
|
|
||||||
|
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/www.c3woc.com_tls.conf
Normal file
14
templates/files/nginx/sites/www.c3woc.com_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name www.c3woc.com;
|
||||||
|
|
||||||
|
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