There are some different files in conf/, but the only one to set up a Searchy agent, and the only one that you must modify, is agent.xml. For advanced users it may also be necessity to modify log4j.properties, this file is used to config the logging system, but it comes initially with a configuration valid for any typical situation. If you do not know the goal of the rest of files, you do not need modify them.
The main config file, and the one that certainly you will need to modify, is AGENT.XML. This is an XML file that describes the behaviour of the agent, it comes with lots of comments, so reading the original AGENT.XML should be enough to understand it, however, we will explain it with some detail here using an examples. The following config file is the simplest agent, an agent with only one Google provider.
<agent>
<transport name="Example agent" target="Google provider">
<port>33333</port>
<max-connections>10</max-connections>
<log-config>../conf/log4jdebug.properties</log-config>
<timeout>100000</timeout>
</transport>
<provider name="Google provider" type="Google" map="Google map">
<key>YouGoogleKeyGoesHere</key>
</provider>
<map name="Google map" type="filter">
<title filter="response">%title%</title>
<subject filter="response">%summary%</subject>
<identifier filter="response">%url%</identifier>
<type filter="response">%hostName%</type>
<description filter="response">%snippet%</description>
<title filter="query">%query%</title>
<creator filter="query">%query%</creator>
<subject filter="query">%query%</subject>
<description filter="query">%query%</description>
<coverage filter="query">%query%</coverage>
<type filter="query">%query%</type>
<identifier filter="query">%query%</identifier>
<source filter="query">%query%</source>
<rights filter="query">%query%</rights>
<publisher filter="query">%query%</publisher>
<date filter="query">%query%</date>
<format filter="query">%query%</format>
<language filter="query">%query%</language>
<contributor filter="query">%query%</contributor>
<relation filter="query">%query%</relation>
</map>
</agent>