Web.config
上传用户:huiyue
上传日期:2022-04-08
资源大小:1429k
文件大小:3k
源码类别:

搜索引擎

开发平台:

ASP/ASPX

  1. <?xml version="1.0"?>
  2. <configuration>
  3. <appSettings>
  4.     <!-- How much logging info is displayed (0:none, 5:maximum) -->
  5.     <add key="Searcharoo_IndexerDefaultVerbosity" value="2"/>
  6.     
  7. <!-- Whether to serialize the Catalog to XML for 'viewing' (it's ALWAYS Binary Serialized) -->
  8. <add key="Searcharoo_DebugSerializeXml" value="true"/>
  9. <!-- Seconds to wait for a page to respond, before giving up -->
  10. <add key="Searcharoo_RequestTimeout" value="5"/>
  11. <!-- First page to search - should have LOTS of links to follow -->
  12. <add key="Searcharoo_VirtualRoot" value="http://localhost:3359/" />
  13.     <!-- Limit to the number of 'levels' of links to follow -->
  14. <add key="Searcharoo_RecursionLimit" value="200"/>
  15. <!-- Request another page after waiting x seconds; use zero ONLY on your own/internal sites -->
  16. <add key="Searcharoo_SpeedLimit" value="1"/>
  17. <!-- Whether to use stemming (English only), and if so, what mode [ Off | StemOnly | StemAndOriginal ] -->
  18. <add key="Searcharoo_StemmingType" value="1"/>
  19. <!-- Whether to use stop words (English only), and if so, what mode [ Off | Short | List ] -->
  20. <add key="Searcharoo_StoppingType" value="2"/>
  21. <!-- Whether to use go words (English only), and if so, what mode [ Off | On ] -->
  22. <add key="Searcharoo_GoType" value="1"/>
  23. <!-- Number of characters to include in 'file summary' -->
  24. <add key="Searcharoo_SummaryChars" value="350"/>
  25. <!-- User Agent sent with page requests, in case you wish to change it -->
  26. <add key="Searcharoo_UserAgent" value="Mozilla/6.0 (MSIE 6.0; Windows NT 5.1; Searcharoo.NET; robot)"/>
  27. <!-- Application[] cache key where the Catalog is stored, in case you need to alter it -->
  28. <add key="Searcharoo_CacheKey" value="Searcharoo_Catalog"/>
  29. <!-- Name of file where the Catalog object is serialized (.dat and .xml) -->
  30. <add key="Searcharoo_CatalogFilepath" value="D:InetpubCodeProject.comSearcharoo7WebApplication"/>
  31.     <add key="Searcharoo_TempFilepath" value="D:InetpubCodeProject.comSearcharoo7WebApplicationTemp"/>
  32.     <add key="Searcharoo_CatalogFilename" value="z_searcharoo"/>
  33. <!-- Number of result links to include per page -->
  34. <add key="Searcharoo_DefaultResultsPerPage" value="10"/>
  35. <!-- Language to use when none is supplied (or supplied language is not available) -->
  36. <add key="Searcharoo_DefaultLanguage" value="en-US"/>
  37.     <!-- Used within an Html comment (no spaces) to exclude part of an Html page indexing -->
  38.     <add key="Searcharoo_IgnoreRegionTagNoIndex" value="SEARCHAROONOINDEX"/>
  39.     <!-- Used within an Html comment (no spaces) to exclude part of an Html page from having links followed -->
  40.     <add key="Searcharoo_IgnoreRegionTagNoFollow" value="SEARCHAROONOFOLLOW"/>
  41.     <!-- If specified (eg. http://proxy:80/) will be used for WebClient requests, if blank, will be ignored -->
  42.     <add key="Searcharoo_ProxyUrl" value=""/>
  43.     
  44.     <!-- Whether Medium Trust has been specified (either below, or in a machine.config file on your hosting provider) -->
  45.     <add key="Searcharoo_InMediumTrust" value="True" />
  46. </appSettings>
  47.    <system.web>
  48.      <compilation debug="true" />
  49.      <trust level="Medium" originUrl="" /><!-- Specify Medium Trust if InMediumTrust=true above-->
  50.      <customErrors mode="Off">
  51.        <error statusCode="404" redirect="/404.aspx" />
  52.      </customErrors>
  53.    </system.web>
  54. </configuration>