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

38 lines
992 B
Text
Raw Normal View History

2022-01-09 20:20:42 +01:00
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;
}
2024-02-27 16:18:32 +01:00
location ~* /impressum {
2023-04-25 14:36:06 +02:00
charset utf-8;
return 308 https://c3woc.de/impressum/;
}
2024-02-27 16:18:32 +01:00
location ~* /kontakt/events/fff_bodensee_21 {
2022-10-25 00:20:17 +02:00
charset utf-8;
return 308 https://winkekatze.tv/events/fff_bodensee_21/;
}
2024-02-27 16:18:32 +01:00
location ~* /hall1 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall1&password=winkekatze&hash=7fce;
}
2024-02-27 16:18:32 +01:00
location ~* /hall2 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall2&password=winkekatze&hash=7fce;
}
2024-02-27 16:18:32 +01:00
location ~* /hall3 {
charset utf-8;
return 308 https://vdo.ninja/?room=wk24_hall3&password=winkekatze&hash=7fce;
}
2022-01-09 20:20:42 +01:00
}