mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
12 lines
251 B
ApacheConf
12 lines
251 B
ApacheConf
<IfModule mod_rewrite.c>
|
|
<IfModule mod_negotiation.c>
|
|
Options -MultiViews
|
|
</IfModule>
|
|
|
|
# Make sure .env files not not browseable if in a sub-directory.
|
|
<FilesMatch "\.env$">
|
|
Deny from all
|
|
</FilesMatch>
|
|
|
|
</IfModule>
|