Lines 20-25
Link Here
|
20 |
SetEnv MEMCACHED_SERVERS "__MEMCACHED_SERVERS__" |
20 |
SetEnv MEMCACHED_SERVERS "__MEMCACHED_SERVERS__" |
21 |
SetEnv MEMCACHED_NAMESPACE "__MEMCACHED_NAMESPACE__" |
21 |
SetEnv MEMCACHED_NAMESPACE "__MEMCACHED_NAMESPACE__" |
22 |
|
22 |
|
|
|
23 |
<Directory "__OPAC_WWW_DIR__"> |
24 |
Options -Indexes |
25 |
</Directory> |
26 |
# Secure internal stuff |
27 |
<DirectoryMatch "__OPAC_WWW_DIR__/.*/(modules|xslt|includes)"> |
28 |
Order deny,allow |
29 |
Deny from all |
30 |
</DirectoryMatch> |
31 |
|
23 |
<IfModule mod_gzip.c> |
32 |
<IfModule mod_gzip.c> |
24 |
mod_gzip_on yes |
33 |
mod_gzip_on yes |
25 |
mod_gzip_dechunk yes |
34 |
mod_gzip_dechunk yes |
Lines 120-125
Link Here
|
120 |
ErrorDocument 404 /cgi-bin/koha/errors/404.pl |
129 |
ErrorDocument 404 /cgi-bin/koha/errors/404.pl |
121 |
ErrorDocument 500 /cgi-bin/koha/errors/500.pl |
130 |
ErrorDocument 500 /cgi-bin/koha/errors/500.pl |
122 |
|
131 |
|
|
|
132 |
<Directory "__INTRANET_WWW_DIR__"> |
133 |
Options -Indexes |
134 |
</Directory> |
135 |
|
136 |
# Secure internal stuff |
137 |
<DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)"> |
138 |
Order deny,allow |
139 |
Deny from all |
140 |
</DirectoryMatch> |
141 |
|
123 |
<IfModule mod_gzip.c> |
142 |
<IfModule mod_gzip.c> |
124 |
mod_gzip_on yes |
143 |
mod_gzip_on yes |
125 |
mod_gzip_dechunk yes |
144 |
mod_gzip_dechunk yes |
126 |
- |
|
|