this should fix docusaurus assets

This commit is contained in:
Codex Agent
2025-12-04 15:00:50 +01:00
parent 9cf3b5d60f
commit 4ede5351be

View File

@@ -24,12 +24,7 @@ server {
fastcgi_buffers 8 16k;
}
location ~* \.(jpg|jpeg|gif|png|css|js|ico|svg|webp|woff2?)$ {
expires 30d;
access_log off;
}
location /internal-docs/ {
location ^~ /internal-docs/ {
# Docusaurus static build lives in app-code volume at /var/www/html/docs/site/build
alias /var/www/html/docs/site/build/;
index index.html;
@@ -41,5 +36,10 @@ server {
add_header Cache-Control "private, no-store";
}
location ~* \.(jpg|jpeg|gif|png|css|js|ico|svg|webp|woff2?)$ {
expires 30d;
access_log off;
}
client_max_body_size 32m;
}