testing webserver header
This commit is contained in:
parent
28b2a56ac9
commit
eeca551e86
2 changed files with 52 additions and 0 deletions
|
@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue