1<?php
2/**
3 * Options for the sphinxsearch plugin
4 *
5 * @author Yaroslav Vorozhko <yaroslav@ivinco.com>
6 */
7
8$conf['host']     = 'localhost';
9$conf['port']     = 9312;
10$conf['index']     = 'dk_main';
11$conf['maxresults'] = 10;
12$conf['snippetsize'] = 200;
13$conf['aroundwords'] = 5;
14
15//main search matching weights
16$conf['body_priority'] = 3;
17$conf['title_priority'] = 3;
18$conf['namespace_priority'] = 1;
19$conf['pagename_priority'] = 3;
20
21//"Matching pagenames" search matching weights
22$conf['mp_namespace_priority'] = 1;
23$conf['mp_pagename_priority'] = 2;
24