1 |
# ----- Example 3 - Descriptive Index Files ------- |
2 |
# |
3 |
# Please see the swish-e documentation for |
4 |
# information on configuration directives. |
5 |
# Documentation is included with the swish-e |
6 |
# distribution, and also can be found on-line |
7 |
# at http://swish-e.org |
8 |
# |
9 |
# |
10 |
# This example demonstrates how to include |
11 |
# descriptive names to your index file |
12 |
# |
13 |
#--------------------------------------------------- |
14 |
|
15 |
# Define headers values for the index -- this might be |
16 |
# helpful if you have a common front end program that |
17 |
# reads more than one index file. These headers can be |
18 |
# returned when running swish (see the -H switch). |
19 |
|
20 |
IndexName "Test index" |
21 |
IndexDescription "This is an index of our two document directories." |
22 |
IndexPointer "http://someplace" |
23 |
IndexAdmin "Doc Manager (dmanager@foo.invalid)" |
24 |
|
25 |
|
26 |
|
27 |
# From previous examples: |
28 |
|
29 |
# What to index |
30 |
IndexFile /home/indexfiles/docs.index |
31 |
IndexDir docs /home/otherdocs |
32 |
IndexOnly .htm .html |
33 |
FollowSymLinks yes |
34 |
|
35 |
# Index meta tags |
36 |
MetaNames author description |
37 |
UndefinedMetaNames ignore |
38 |
|
39 |
|
40 |
# end of example |