update to booking link and also finalized and approved

This commit is contained in:
Concept Agent
2026-05-21 20:04:03 +02:00
parent 2e9329b1f4
commit 53aacf9999
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ __pycache__/
*.pyc *.pyc
.claude/ .claude/
.planning/ .planning/
tools/ .tools/
+1 -1
View File
@@ -28,7 +28,7 @@ ServerSignature Off
</FilesMatch> </FilesMatch>
# Block tools and hidden directories # Block tools and hidden directories
RewriteRule ^tools/ - [F,L] RewriteRule ^\.tools/ - [F,L]
RewriteRule ^\.planning/ - [F,L] RewriteRule ^\.planning/ - [F,L]
RewriteRule ^\.claude/ - [F,L] RewriteRule ^\.claude/ - [F,L]
+2 -2
View File
@@ -22,8 +22,8 @@ server {
return 404; return 404;
} }
# Block tools directory # Block tools directory (hidden, but belt-and-suspenders)
location ^~ /tools/ { location ^~ /.tools/ {
deny all; deny all;
return 404; return 404;
} }