# Apache directives for Axyl
# Customise this file if you are using Apache as your webserver
# and you need to control how it is going to serve content.

# Prevent Axyl configuration files from being viewed
<FilesMatch ".*application.xml$">
  Order Deny,Allow
  Deny from All
</FilesMatch>

# Prevent various other sensitive content files being accessed
<FilesMatch "\.(dat|sql|log|bak|sh|pl|inc)$">
  Order Deny,Allow
  Deny from All
</FilesMatch>

# Prevent directory listings in absence of index file
Options -Indexes


