1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 19:41:55 +02:00

Fix default htaccess config to allow advanced search requests (fix #980)

This commit is contained in:
Afterster 2015-10-02 21:39:00 +02:00
parent 28c2e9a7fe
commit 36ecbea1fa

10
lib/javascript/.htaccess Normal file
View file

@ -0,0 +1,10 @@
# Apache 2.4
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
# Apache 2.2
<IfModule mod_access.c>
Order deny,allow
Allow from all
</IfModule>