Skip to content

Commit

Permalink
just einhornsystem things
Browse files Browse the repository at this point in the history
  • Loading branch information
DO1JLR committed Jan 4, 2021
1 parent 5f12c58 commit 0efcd79
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 @@ -59,6 +59,8 @@ nginx_sites:
- name: 'www.podcast.c3vvoc.de'
- name: 'podcast.c3woc.eu'
- name: 'www.podcast.c3woc.eu'
- name: 'angel.systems'
- name: 'einhornsystem.de'


acme_notification_email: "{{ _acme_notification_email }}"
Expand Down
14 changes: 14 additions & 0 deletions templates/files/nginx/sites/angel.systems_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 angel.systems;

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://engelsystem.de/;
}
}
14 changes: 14 additions & 0 deletions templates/files/nginx/sites/einhornsystem.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 einhornsystem.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://engelsystem.de/;
}
}

0 comments on commit 0efcd79

Please sign in to comment.