lib-vt docs: add etags to the pages

pull/9053/head
Mitchell Hashimoto 2025-10-06 08:48:54 -07:00
parent d7b9ce76a6
commit e4f0c366ff
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,8 @@ server {
location / {
root /usr/share/nginx/html;
index index.html;
etag on;
add_header Cache-Control "no-cache" always;
add_header X-Robots-Tag "noindex, nofollow" always;
add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:;" always;
}
@ -20,6 +22,8 @@ server {
location / {
root /usr/share/nginx/html;
index index.html;
etag on;
add_header Cache-Control "no-cache" always;
add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline'; style-src 'self' 'unsafe-inline'; img-src 'self' data:;" always;
}
}