update recovered sdlc git repo
This commit is contained in:
28
etc-template/kopano/webapp/.htaccess
Normal file
28
etc-template/kopano/webapp/.htaccess
Normal file
@@ -0,0 +1,28 @@
|
||||
# some apache settings
|
||||
Options -Indexes
|
||||
|
||||
# The maximum POST limit. To upload large files, this value must be larger than upload_max_filesize.
|
||||
<IfModule mod_php5.c>
|
||||
php_value post_max_size 31M
|
||||
php_value upload_max_filesize 30M
|
||||
</IfModule>
|
||||
|
||||
<IfModule mod_php7.c>
|
||||
php_value post_max_size 31M
|
||||
php_value upload_max_filesize 30M
|
||||
</IfModule>
|
||||
|
||||
# Deny access to config.php, config.php.dist, debug.php, debug.php.dist, defaults.php
|
||||
# because they could become a security vulnerability when accessible
|
||||
# Better safe then sorry
|
||||
<FilesMatch "^(config|debug|defaults|init)\.php">
|
||||
<IfVersion < 2.4>
|
||||
Deny from all
|
||||
</IfVersion>
|
||||
|
||||
<IfVersion >= 2.4>
|
||||
<RequireAll>
|
||||
Require all denied
|
||||
</RequireAll>
|
||||
</IfVersion>
|
||||
</FilesMatch>
|
||||
Reference in New Issue
Block a user