Files
docker-nginx-h5ai/docker-persist/html/_h5ai/public/.htaccess
2024-10-26 20:34:27 +00:00

14 lines
226 B
ApacheConf
Executable File

## 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>