Add .htaccess to block access to docs and Python files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
DJP 2026-02-25 13:12:15 -05:00
parent 871281c3fb
commit 369e11d83e

9
.htaccess Normal file
View file

@ -0,0 +1,9 @@
# Block access to documentation and config files
<FilesMatch "\.(md|gitignore)$">
Require all denied
</FilesMatch>
# Block access to Python files (except via PHP shell_exec)
<FilesMatch "\.py$">
Require all denied
</FilesMatch>