mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 12:07:15 +01:00
31 lines
671 B
ApacheConf
31 lines
671 B
ApacheConf
# Generated file from class.acl.php
|
|
# Disable directory browsing
|
|
Options -Indexes
|
|
# Deny access to all *.php
|
|
Order deny,allow
|
|
Allow from all
|
|
<FilesMatch "\.(css|jpg|jpeg|gif|png|svg|js|ico|css.map|js.map)$">
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</FilesMatch>
|
|
# Allow access to index.php
|
|
<Files index.php>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
# Allow access to setup.php
|
|
<Files setup.php>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
# Allow access to inline PDF viewer
|
|
<Files viewer.html>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
<Files robots.txt>
|
|
Order Allow,Deny
|
|
Allow from all
|
|
</Files>
|
|
# end
|