Skip to content

Commit

Permalink
more podcasting domains
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Jan 1, 2021
1 parent bb389f2 commit 4f1eb1e
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 0 deletions.
6 changes: 6 additions & 0 deletions host_vars/web01.l3d.space.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ nginx_sites:
- name: 'podcast.c3woc.de'
webroot:
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"

Expand Down
14 changes: 14 additions & 0 deletions templates/files/nginx/sites/podcast.c3vvoc.de_tls.conf
Original file line number Diff line number Diff line change
@@ -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 changes: 14 additions & 0 deletions templates/files/nginx/sites/podcast.c3woc.eu_tls.conf
Original file line number Diff line number Diff line change
@@ -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 changes: 14 additions & 0 deletions templates/files/nginx/sites/www.podcast.c3vvoc.de_tls.conf
Original file line number Diff line number Diff line change
@@ -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 changes: 14 additions & 0 deletions templates/files/nginx/sites/www.podcast.c3woc.eu_tls.conf
Original file line number Diff line number Diff line change
@@ -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;
}
}

0 comments on commit 4f1eb1e

Please sign in to comment.