mod_estraier 0.3.2 review

Download
by rbytes.net on

mod_estraier is an Apache module that registers web pages processed by the apache and search from them using the node API of Hyper Es

License: GPL (GNU General Public License)
File size: 0K
Developer: Shinichiro Hamaji
0 stars award from rbytes.net

mod_estraier is an Apache module that registers web pages processed by the apache and search from them using the node API of Hyper Estraier.

Especially, indexing and searching the documents through the proxy or dynamic contents like Wiki or BBS is the main object of mod_estraier.

Requirements:
linux 2.6.11-mm4
gcc 3.4.3, 4.0.1
Apache 2.0.52, 2.0.54, 2.1.7
Hyper Estraier 1.0.2
QDBM 1.8.33

Compile:

Extract the archive of mod_estraier, and do

$ ./configure
$ make
# make install

You can use --with-tidy configure option to set the location of tidy, and you can use --with-apxs configure option to set the location of apxs.

Configuration:

Next, you should configure the apache. For example, if you want to use mod_estraier as proxy, you may add to httpd.conf like following:

LoadModule estraier_module modules/mod_estraier.so

ProxyRequests On
< Proxy * >
Order deny,allow
Deny from all
Allow from 127.0.0.1
SetOutputFilter estraier
EstraierNode http://localhost:1978/node/test
EstraierUser admin
EstraierPass admin
EstraierDenyURI http://[a-z]*.?google.co
EstraierAllowURI http://labs.google.com/
EstraierDenyURI favicon.ico
EstraierUseWeight On
EstraierFilterCommand ^application/pdf H@/usr/local/share/hyperestraier/filter/estfxpdftohtml
EstraierFilterCommand ^application/msword H@/usr/local/share/hyperestraier/filter/estfxmsotohtml
EstraierFilterCommand ^application/vnd.ms-(excel|powerpoint) H@/usr/local/share/hyperestraier/filter/estfxmsotohtml
< /Proxy >

or, if you want to use as reverse proxy, you may add to httpd.conf like following:

< Location /my_web/ >
SetOutputFilter estraier
EstraierNode http://localhost:1978/node/test
EstraierUser admin
EstraierPass admin
EstraierDenyURI favicon.ico
EstraierUseWeight On
< /Location >

mod_estraier 0.3.2 search tags