Skip to content

Commit

Permalink
Adding waffelpate.de
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Oct 12, 2021
1 parent 2cecd20 commit dff3c92
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions host_vars/web01.l3d.space/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ nginx_sites:
- name: 'preview.c3woc.de'
webroot:
user: 'preview'
- name: 'waffelpate.de'
- name: 'www.waffelpate.de'

acme_notification_email: "{{ _acme_notification_email }}"

Expand Down
14 changes: 14 additions & 0 deletions templates/files/nginx/sites/waffelpate.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 waffelpate.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 418;
}
}
14 changes: 14 additions & 0 deletions templates/files/nginx/sites/www.waffelpate.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.waffelpate.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://waffelpate.de$request_uri;
}
}

0 comments on commit dff3c92

Please sign in to comment.