inital working version

This commit is contained in:
Stefan Hardegger
2025-07-22 21:49:40 +02:00
parent bebb799784
commit 59d29dceaf
98 changed files with 8027 additions and 856 deletions

View File

@@ -46,5 +46,15 @@ http {
expires 1y;
add_header Cache-Control "public, immutable";
}
# Typesense admin interface
location /typesense/ {
proxy_pass http://typesense:8108/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Typesense-API-Key $http_x_typesense_api_key;
}
}
}