1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_playbook_servers.git synced 2024-09-14 19:53:56 +02:00

Adding fsck-2024.winkekatze.tv

This commit is contained in:
L3D 2024-04-26 22:53:08 +02:00
parent 4fa14fce0e
commit 9692e18718
No known key found for this signature in database
GPG key ID: AD65B920933B4B20
3 changed files with 35 additions and 0 deletions

View file

@ -121,6 +121,10 @@ nginx_sites:
webroot:
user: 'winkekatze'
- name: 'www.aalen-geekend-23.winkekatze.tv'
- name: 'fsck-2024.winkekatze.tv'
webroot:
user: 'winkekatze'
- name: 'www.fsck-2024.winkekatze.tv'
- name: 'winkekatze.tv'
webroot:
user: 'winkekatze'

View file

@ -0,0 +1,17 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name fsck-2024.winkekatze.tv;
include snippets/tls_parameters_{{ site.name }}.snippet.conf;
include snippets/tls_certificate_{{ site.name }}.snippet.conf;
include snippets/logging_{{ site.name }}.snippet.conf;
root /srv/www/fsck-2024.winkekatze.tv;
location / {
charset utf-8;
try_files $uri $uri/ =404;
}
}

View file

@ -0,0 +1,14 @@
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name www.fsck-2024.winkekatze.tv;
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://fsck-2024.winkekatze.tv$request_uri;
}
}