mirror of
https://github.com/DO1JLR/ansible_playbook_servers.git
synced 2024-09-14 19:53:56 +02:00
more podcasting domains
This commit is contained in:
parent
bb389f2ace
commit
4f1eb1e380
5 changed files with 62 additions and 0 deletions
|
@ -47,6 +47,12 @@ nginx_sites:
|
||||||
- name: 'podcast.c3woc.de'
|
- name: 'podcast.c3woc.de'
|
||||||
webroot:
|
webroot:
|
||||||
user: 'webwaffelpodcast'
|
user: 'webwaffelpodcast'
|
||||||
|
- name: 'www.podcast.c3woc.de'
|
||||||
|
- name: 'podcast.c3woc.org'
|
||||||
|
- name: 'www.podcast.c3woc.org'
|
||||||
|
- name: 'podcast.c3vvoc.de'
|
||||||
|
- name: 'www.podcast.c3vvoc.de'
|
||||||
|
|
||||||
|
|
||||||
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"
|
acme_notification_email: "acme_{{ inventory_hostname }}@l3d.yt"
|
||||||
|
|
||||||
|
|
14
templates/files/nginx/sites/podcast.c3vvoc.de_tls.conf
Normal file
14
templates/files/nginx/sites/podcast.c3vvoc.de_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name www.podcast.c3vvoc.de;
|
||||||
|
|
||||||
|
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://podcast.c3woc.de$request_uri;
|
||||||
|
}
|
||||||
|
}
|
14
templates/files/nginx/sites/podcast.c3woc.eu_tls.conf
Normal file
14
templates/files/nginx/sites/podcast.c3woc.eu_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name podcast.c3woc.eu;
|
||||||
|
|
||||||
|
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://podcast.c3woc.de$request_uri;
|
||||||
|
}
|
||||||
|
}
|
14
templates/files/nginx/sites/www.podcast.c3vvoc.de_tls.conf
Normal file
14
templates/files/nginx/sites/www.podcast.c3vvoc.de_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name podcast.c3vvoc.de;
|
||||||
|
|
||||||
|
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://podcast.c3woc.de$request_uri;
|
||||||
|
}
|
||||||
|
}
|
14
templates/files/nginx/sites/www.podcast.c3woc.eu_tls.conf
Normal file
14
templates/files/nginx/sites/www.podcast.c3woc.eu_tls.conf
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name www.podcast.c3woc.eu;
|
||||||
|
|
||||||
|
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://podcast.c3woc.de$request_uri;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue