testing webserver header

This commit is contained in:
L3D 2023-02-21 03:23:00 +01:00
parent 28b2a56ac9
commit eeca551e86
Signed by: l3d
GPG key ID: CD08445BFF4313D1
2 changed files with 52 additions and 0 deletions

View file

@ -1,3 +1,9 @@
{{ ansible_managed | comment }}
{#
:%s/example.com/test.winkekatze.tv/gc
#}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
@ -13,5 +19,25 @@ server {
location / {
charset utf-8;
try_files $uri $uri/ =404;
add_header Access-Control-Allow-Origin *;
add_header Cache-Control "public, max-age=0";
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
location ~* .(?:css|js)$ {
charset utf-8;
try_files $uri $uri/ =404;
add_header Access-Control-Allow-Origin *;
expires 2h;
add_header Cache-Control "public";
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
location stream.m3u8 {
types { } default_type "application/x-mpegURL; charset=utf-8";
charset utf-8;
try_files $uri $uri/ =404;
add_header Cache-Control "public, max-age=0";
add_header Access-Control-Allow-Origin *;
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
}

View file

@ -1,3 +1,9 @@
{{ ansible_managed | comment }}
{#
:%s/example.com/test.winkekatze.tv/gc
#}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
@ -13,5 +19,25 @@ server {
location / {
charset utf-8;
try_files $uri $uri/ =404;
add_header Access-Control-Allow-Origin *;
add_header Cache-Control "public, max-age=0";
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
location ~* .(?:css|js)$ {
charset utf-8;
try_files $uri $uri/ =404;
add_header Access-Control-Allow-Origin *;
expires 2h;
add_header Cache-Control "public";
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
location stream.m3u8 {
types { } default_type "application/x-mpegURL; charset=utf-8";
charset utf-8;
try_files $uri $uri/ =404;
add_header Cache-Control "public, max-age=0";
add_header Access-Control-Allow-Origin *;
add_header X-Robots-Tag "noindex, nofollow, nosnippet, noarchive";
}
}