--- trunk/global.conf 2003/07/13 13:23:17 91 +++ trunk2/global.conf 2004/09/12 17:21:47 429 @@ -2,10 +2,28 @@ [global] # define database to use for indexes - dbi_dbd=Pg - dbi_dsn=dbname=webpac-dev +# dbi_dbd=Pg +# dbi_dsn=dbname=webpac-dev + + dbi_dbd=SQLite + dbi_dsn=dbname=/data/webpac/index.sqlite + dbi_user=dpavlin - dbi_passwd=xx + dbi_passwd="" + + # display progress bar indicator (default is no) + show_progress=1 + + # Filter characters before feeding them to swish. If you don't use + # this file, implementation will fall-back to passing through + # original charset, and if you have anything other than plain + # 7-bit ascii in your data, your words will end-up splitted in + # index on 8-bit characters and you won't be able to find them! + my_unac_filter = /data/webpac/my_unac_string.pm + + # use this file to save cache of parsed database structures + # This will dramaticaly reduce memory usage, but decrease performance + cache_dir=/data/webpac2/cache/ [webpac] # path to template html files @@ -20,4 +38,13 @@ max_hits = 0 # number of results on each pager page (default 10) on_page = 30 + # Minimum number of characters which will be will suplemented by + # wildcard * to find all words which begin with those letters, + # This should be at least 1, so that queries with non-alpha characters + # like "&" would work. However, larger values also make sense to produce + # more relevant hits on words like "to", "at" etc. + min_wildcard = 2 + # master template which will be used to enable global design changes + # (it will replace ##webpac## in this template with output of webpac) + template = /data/webpac/public_html/template.html