Initial commit: Frida-Fred Webseite

This commit is contained in:
2026-01-31 13:27:33 +01:00
parent 6ec7cedbfc
commit 1fccc96549
49 changed files with 3748 additions and 0 deletions

19
api/.htaccess Normal file
View File

@@ -0,0 +1,19 @@
# Verhindere direkten Zugriff auf config.php
<Files "config.php">
Order Allow,Deny
Deny from all
</Files>
# Verhindere direkten Zugriff auf send-mail.php via GET
<Files "send-mail.php">
<Limit GET>
Order Allow,Deny
Deny from all
</Limit>
</Files>
# Verstecke sensible Dateien
<FilesMatch "^(config\.php|config\.php\.example|\..*|composer\..*)">
Order Allow,Deny
Deny from all
</FilesMatch>