21 lines
338 B
ApacheConf
21 lines
338 B
ApacheConf
php_flag display_errors off
|
|
|
|
php_value memory_limit 2048M
|
|
php_value max_input_vars 20000
|
|
|
|
Header always unset X-Frame-Options
|
|
|
|
# Disable directory browsing
|
|
Options -Indexes
|
|
|
|
<FilesMatch "^\.">
|
|
Require all denied
|
|
</FilesMatch>
|
|
|
|
<Files *.txt>
|
|
ForceType applicaton/octet-stream
|
|
</Files>
|
|
|
|
<Files composer.*>
|
|
Require all denied
|
|
</Files> |