View | Details | Raw Unified | Return to bug 9812
Collapse All | Expand All

(-)a/etc/koha-httpd.conf (-1 / +19 lines)
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 119-124 Link Here
119
   ErrorDocument 404 /cgi-bin/koha/errors/404.pl
128
   ErrorDocument 404 /cgi-bin/koha/errors/404.pl
120
   ErrorDocument 500 /cgi-bin/koha/errors/500.pl
129
   ErrorDocument 500 /cgi-bin/koha/errors/500.pl
121
130
131
   <Directory "__INTRANET_WWW_DIR__">
132
      Options -Indexes
133
   </Directory>
134
 
135
   # Secure internal stuff
136
   <DirectoryMatch "__INTRANET_WWW_DIR__/.*/(modules|xslt|includes)">
137
      Order deny,allow
138
      Deny from all
139
   </DirectoryMatch>
140
122
   <IfModule mod_gzip.c>
141
   <IfModule mod_gzip.c>
123
     mod_gzip_on yes
142
     mod_gzip_on yes
124
     mod_gzip_dechunk yes
143
     mod_gzip_dechunk yes
125
- 

Return to bug 9812