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 {
|
2024-02-26 12:20:23 +01:00
|
|
|
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 {
|
2024-02-26 12:20:23 +01:00
|
|
|
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 {
|
2024-02-26 12:20:23 +01:00
|
|
|
charset utf-8;
|
|
|
|
return 308 https://vdo.ninja/?room=wk24_hall3&password=winkekatze&hash=7fce;
|
|
|
|
}
|
2022-01-09 20:20:42 +01:00
|
|
|
}
|