First Upload

This commit is contained in:
2024-10-26 20:34:27 +00:00
commit a1e49121cc
137 changed files with 4053 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
## make this folder accessible
# Apache < 2.3
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
Satisfy All
</IfModule>
# Apache ≥ 2.3
<IfModule mod_authz_core.c>
Require all granted
</IfModule>