1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_playbook_servers.git synced 2024-09-14 19:53:56 +02:00
ansible_playbook_servers/templates/files/nginx/sites/winkekatze.tv_tls.conf
2024-02-27 16:18:32 +01:00

37 lines
992 B
Text

server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name 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/winkekatze.tv;
location / {
charset utf-8;
try_files $uri $uri/ =404;
}
location ~* /impressum {
charset utf-8;
return 308 https://c3woc.de/impressum/;
}
location ~* /kontakt/events/fff_bodensee_21 {
charset utf-8;
return 308 https://winkekatze.tv/events/fff_bodensee_21/;
}
location ~* /hall1 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall1&password=winkekatze&hash=7fce;
}
location ~* /hall2 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall2&password=winkekatze&hash=7fce;
}
location ~* /hall3 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall3&password=winkekatze&hash=7fce;
}
}