Merge branch 'bug_9812' into 3.12-master
This commit is contained in:
commit
761c6213f4
1 changed files with 20 additions and 0 deletions
|
@ -20,6 +20,16 @@
|
|||
SetEnv MEMCACHED_SERVERS "__MEMCACHED_SERVERS__"
|
||||
SetEnv MEMCACHED_NAMESPACE "__MEMCACHED_NAMESPACE__"
|
||||
|
||||
<Directory "__OPAC_WWW_DIR__">
|
||||
Options -Indexes
|
||||
</Directory>
|
||||
|
||||
# Secure internal stuff
|
||||
<DirectoryMatch "__OPAC_WWW_DIR__/.*/(modules|xslt|includes)">
|
||||
Order deny,allow
|
||||
Deny from all
|
||||
</DirectoryMatch>
|
||||
|
||||
<IfModule mod_gzip.c>
|
||||
mod_gzip_on yes
|
||||
mod_gzip_dechunk yes
|
||||
|
@ -122,6 +132,16 @@
|
|||
ErrorDocument 404 /cgi-bin/koha/errors/404.pl
|
||||
ErrorDocument 500 /cgi-bin/koha/errors/500.pl
|
||||
|
||||
<Directory "__INTRANET_WWW_DIR__">
|
||||
Options -Indexes
|
||||
</Directory>
|
||||
|
||||
# Secure internal stuff
|
||||
<DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)">
|
||||
Order deny,allow
|
||||
Deny from all
|
||||
</DirectoryMatch>
|
||||
|
||||
<IfModule mod_gzip.c>
|
||||
mod_gzip_on yes
|
||||
mod_gzip_dechunk yes
|
||||
|
|
Loading…
Reference in a new issue