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