Initial QuestionGraph library and documentation

This commit is contained in:
Peter Stockings
2026-09-13 12:59:36 +10:00
commit 0879a3e786
48 changed files with 7712 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
server_tokens off;
location = /healthz {
access_log off;
default_type text/plain;
return 200 "ok\n";
}
location /assets/ {
try_files $uri =404;
add_header Cache-Control "public, max-age=31536000, immutable";
}
location /downloads/ {
try_files $uri =404;
add_header Cache-Control "no-cache";
add_header Content-Disposition "attachment";
}
location / {
try_files $uri $uri/ /index.html;
add_header Cache-Control "no-cache";
}
}