- Voice enhancements, user management, payment method

This commit is contained in:
Ty Clifford
2026-06-08 15:44:15 -04:00
parent 9e3ff61eb7
commit 063b8dc3e8
26 changed files with 2832 additions and 927 deletions
+9 -4
View File
@@ -41,14 +41,19 @@ server {
include fastcgi_params;
}
# Block direct access to db/ and archive/ directories
location ~ ^/(db|archive)/ {
# Block direct access to storage and internal libraries
location ~ ^/(db|archive|lib)/ {
deny all;
return 404;
}
# Block .sqlite files from being served directly
location ~* \.sqlite$ {
# Block credentials and SQLite sidecar files
location = /config.json {
deny all;
return 404;
}
location ~* \.sqlite($|-wal$|-shm$) {
deny all;
return 404;
}