mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
c3woc.cn
This commit is contained in:
parent
f7d817f74b
commit
e4d3322cca
4 changed files with 31 additions and 3 deletions
|
@ -27,6 +27,8 @@ nginx_sites:
|
|||
- name: 'www.c3woc.org'
|
||||
- name: 'c3woc.eu'
|
||||
- name: 'www.c3woc.eu'
|
||||
- name: 'c3woc.cn'
|
||||
- name: 'www.c3woc.cn'
|
||||
|
||||
|
||||
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"
|
||||
|
|
14
templates/files/nginx/sites/c3woc.cn_tls.conf
Normal file
14
templates/files/nginx/sites/c3woc.cn_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name c3woc.cn;
|
||||
|
||||
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.org$request_uri;
|
||||
}
|
||||
}
|
|
@ -8,9 +8,7 @@ server {
|
|||
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
|
||||
include snippets/logging_{{ site.name }}.snippet.conf;
|
||||
|
||||
root /srv/www/c3woc.org;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ =404;
|
||||
return 308 https://c3woc.org$request_uri;
|
||||
}
|
||||
}
|
||||
|
|
14
templates/files/nginx/sites/www.c3woc.cn_tls.conf
Normal file
14
templates/files/nginx/sites/www.c3woc.cn_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
|||
server {
|
||||
listen 443 ssl http2;
|
||||
listen [::]:443 ssl http2;
|
||||
|
||||
server_name www.c3woc.cn;
|
||||
|
||||
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.org$request_uri;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue