File: README

package info (click to toggle)
libapache-mod-index-rss 0.10-4
  • links: PTS
  • area: main
  • in suites: woody
  • size: 76 kB
  • ctags: 49
  • sloc: ansic: 186; makefile: 88; sh: 87
file content (34 lines) | stat: -rw-r--r-- 886 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
The point of mod_index_rss is to give you an easy
way to generate RSS files for you static content.
It will build an RSS file for any directory that
can be reached via a URL (keep this in mind for
security, this is beta and I haven't added in 
pieces to restrict it from certain directories).
Once installed you just have to put in
the browser:
http://www.example.com/?index=rss


The following are a couple of examples:

This would enable mod_index_rss for a virtualhost
and only allow for file that have .htm and .html
extensions to be sent.

<virtualhost>
	IndexRSSEnabled "*.htm"
	IndexRSSEnabled "*.html"
</virtualhost>

This example would allow all files to be published
except gif and jpeg files.
<virtualhost>
	IndexRSSDisabled "*.gif"
	IndexRSSDisabled "*.jpg"
</virtualhost>

You will find a faq at http://www.tangent.org/mod_index_rss/

Have fun,
	-Brian Aker
	 Seattle, WA.