]> git.deb.at Git - pkg/blosxom.git/blob - debian/blosxom.conf
Added preinst script to cleanup flavour symlinks which aren't shipped anymore, remove...
[pkg/blosxom.git] / debian / blosxom.conf
1 # blosxom  --  resource file for the Debian GNU/Linux package 
2 #              of the blosxom weblog application
3 #
4 # This file is sourced by /usr/lib/cgi-bin/blosxom. 
5 #
6 # Storing values here instead of directly in the Perl code permits 
7 # easier upgrades of the package without risks of losing these very 
8 # configuration settings. 
9 #
10 # Whichever variable ought to get adjusted can be set here. Values in
11 # cgi script act as default which may be overwritten from here.
12 #
13 # The Debian GNU/Linux extensions to blosxom are 
14 # Copyright 2003  Dirk Eddelbuettel <edd@debian.org> and GPL'ed
15
16 # Blosxom
17 # Author: Rael Dornfest <rael@oreilly.com>
18 # Version: 2.0
19 # Home/Docs/Licensing: http://www.raelity.org/apps/blosxom/
20
21 # --- Configurable variables -----
22
23 # What's this blog's title?
24 # $blog_title = "My (Debian) Blosxom";
25
26 # What's this blog's description (for outgoing RSS feed)?
27 # $blog_description = "Yet another (Debian based) Blosxom blog.";
28
29 # What's this blog's primary language (for outgoing RSS feed)?
30 # $blog_language = "en";
31
32 # Where are this blog's entries kept?
33 # $datadir = "/Library/WebServer/Documents/blosxom";
34 $datadir = "/var/lib/blosxom/data";
35
36 # What's my preferred base URL for this blog (leave blank for automatic)?
37 # $url = "";
38
39 # Should I stick only to the datadir for items or travel down the
40 # directory hierarchy looking for items?  If so, to what depth?
41 # 0 = infinite depth (aka grab everything), 1 = datadir only, n = n levels down
42 # $depth = 0;
43
44 # How many entries should I show on the home page?
45 # $num_entries = 40;
46
47 # What file extension signifies a blosxom entry?
48 # $file_extension = "txt";
49
50 # What is the default flavour?
51 # $default_flavour = "html";
52
53 # --- Plugins (Optional) -----
54
55 # Where are my plugins kept?
56 $plugin_dir = "/etc/blosxom/plugins";
57
58 # Where should my modules keep their state information?
59 $plugin_state_dir = "/var/lib/blosxom/state";
60
61
62 # --- Static Rendering -----
63
64 # Where are this blog's static files to be created?
65 # $static_dir = "/Library/WebServer/Documents/blog";
66 $static_dir = "/var/lib/blosxom/static";
67
68 # What's my administrative password (you must set this for static rendering)?
69 # $static_password = "";
70
71 # What flavours should I generate statically?
72 # @static_flavours = qw/html rss/;
73
74 # Should I statically generate individual entries?
75 # 0 = no, 1 = yes
76 # $static_entries = 0;
77
78 # ------------ leave this last line
79
80 1;
81