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;
|
|
|
|
}
|
2023-04-25 14:36:06 +02:00
|
|
|
location /impressum/ {
|
|
|
|
charset utf-8;
|
|
|
|
return 308 https://c3woc.de/impressum/;
|
|
|
|
}
|
2022-10-25 00:20:17 +02:00
|
|
|
location /kontakt/events/fff_bodensee_21/ {
|
|
|
|
charset utf-8;
|
|
|
|
return 308 https://winkekatze.tv/events/fff_bodensee_21/;
|
|
|
|
}
|
2022-01-09 20:20:42 +01:00
|
|
|
}
|