lib-vt docs: add etags to the pages

This commit is contained in:
Mitchell Hashimoto
2025-10-06 08:48:54 -07:00
parent d7b9ce76a6
commit e4f0c366ff

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;
}
}