2006-03-13 19:35:23 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
# Configuration file for ikiwiki.
|
2007-02-09 03:59:19 +01:00
|
|
|
# Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
|
2006-07-03 23:29:56 +02:00
|
|
|
# build the wiki.
|
2006-03-13 19:35:23 +01:00
|
|
|
#
|
|
|
|
# Remember to re-run ikiwiki --setup any time you edit this file.
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
use IkiWiki::Setup::Standard {
|
2006-03-13 19:35:23 +01:00
|
|
|
wikiname => "MyWiki",
|
2006-03-23 02:40:46 +01:00
|
|
|
#adminuser => ["yourname", ],
|
2006-11-19 22:15:53 +01:00
|
|
|
adminemail => 'me@example.org',
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-03-13 19:35:23 +01:00
|
|
|
# Be sure to customise these..
|
|
|
|
srcdir => "/path/to/source",
|
|
|
|
destdir => "/var/www/wiki",
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-11-19 22:15:53 +01:00
|
|
|
url => "http://example.org/wiki",
|
|
|
|
cgiurl => "http://example.org/ikiwiki.cgi",
|
2006-03-23 03:53:03 +01:00
|
|
|
#templatedir => "/usr/share/ikiwiki/templates",
|
2007-02-09 04:06:24 +01:00
|
|
|
#underlaydir => "/usr/share/ikiwiki/basewiki",
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-06-02 07:43:58 +02:00
|
|
|
# Subversion stuff.
|
2006-11-20 23:57:20 +01:00
|
|
|
#rcs => "svn",
|
2006-11-19 22:15:53 +01:00
|
|
|
#historyurl => "http://svn.example.org/trunk/[[file]]",
|
|
|
|
#diffurl => "http://svn.example.org/trunk/[[file]]?root=wiki&r1=[[r1]]&r2=[[r2]]",
|
2006-11-20 23:57:20 +01:00
|
|
|
#svnrepo => "/svn/wiki",
|
|
|
|
#svnpath => "trunk",
|
2006-03-13 20:29:21 +01:00
|
|
|
|
2006-06-02 07:43:58 +02:00
|
|
|
# Git stuff.
|
|
|
|
#rcs => "git",
|
2006-11-19 22:15:53 +01:00
|
|
|
#historyurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=history;f=[[file]]",
|
|
|
|
#diffurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]",
|
2007-01-28 00:56:17 +01:00
|
|
|
#gitorigin_branch => "origin",
|
|
|
|
#gitmaster_branch => "master",
|
2006-06-02 07:43:58 +02:00
|
|
|
|
2006-09-04 08:15:54 +02:00
|
|
|
# Tla stuff.
|
|
|
|
#rcs => "tla"
|
|
|
|
#historyurl => ??,
|
|
|
|
#diffurl => ??,
|
|
|
|
|
2006-09-06 22:31:55 +02:00
|
|
|
# Mercurial stuff.
|
|
|
|
#rcs => "mercurial",
|
|
|
|
#historyurl => "http://localhost:8000/", # hg serve'd local repository
|
|
|
|
#diffurl => "http://localhost:8000/?fd=[[changeset]];file=[[file]]",
|
|
|
|
|
2006-03-15 04:24:34 +01:00
|
|
|
wrappers => [
|
2006-06-02 07:43:58 +02:00
|
|
|
#{
|
|
|
|
# # The cgi wrapper.
|
|
|
|
# cgi => 1,
|
|
|
|
# wrapper => "/var/www/wiki/ikiwiki.cgi",
|
|
|
|
# wrappermode => "06755",
|
|
|
|
#},
|
2006-11-20 23:57:20 +01:00
|
|
|
#{
|
|
|
|
# # The svn post-commit wrapper.
|
|
|
|
# # Note that this will overwrite any existing
|
|
|
|
# # post-commit hook script, which may not be
|
|
|
|
# # what you want.
|
|
|
|
# wrapper => "/svn/wikirepo/hooks/post-commit",
|
|
|
|
# wrappermode => "04755",
|
|
|
|
# # Enable mail notifications of commits.
|
|
|
|
# notify => 1,
|
2007-04-10 00:54:37 +02:00
|
|
|
# # Log to syslog since svn post-commit hooks
|
|
|
|
# # hide output and errors.
|
|
|
|
# syslog => 1,
|
2006-11-20 23:57:20 +01:00
|
|
|
#},
|
2006-04-03 02:00:16 +02:00
|
|
|
#{
|
2006-06-02 07:43:58 +02:00
|
|
|
# # The git post-update wrapper.
|
2006-06-03 20:03:41 +02:00
|
|
|
# # Note that this will overwrite any existing
|
|
|
|
# # post-update hook script, which may not be
|
2006-06-02 07:43:58 +02:00
|
|
|
# # what you want.
|
2006-11-19 22:15:53 +01:00
|
|
|
# wrapper => "/git/wiki.git/hooks/post-update",
|
2006-06-02 07:43:58 +02:00
|
|
|
# wrappermode => "04755",
|
|
|
|
# # Enable mail notifications of commits.
|
|
|
|
# notify => 1,
|
2006-04-03 02:00:16 +02:00
|
|
|
#},
|
2006-03-15 04:24:34 +01:00
|
|
|
],
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-10-09 01:57:37 +02:00
|
|
|
# Generate rss feeds for blogs?
|
2006-03-24 03:42:19 +01:00
|
|
|
rss => 1,
|
2006-10-09 01:57:37 +02:00
|
|
|
# Generate atom feeds for blogs?
|
|
|
|
atom => 1,
|
2006-06-27 03:13:03 +02:00
|
|
|
# Urls to ping with XML-RPC when rss feeds are updated
|
|
|
|
#pingurl => [qw{http://rpc.technorati.com/rpc/ping}],
|
2006-05-05 20:20:52 +02:00
|
|
|
# Include discussion links on all pages?
|
|
|
|
discussion => 1,
|
2006-07-28 19:48:24 +02:00
|
|
|
# To exclude files matching a regexp from processing. This adds to
|
|
|
|
# the default exclude list.
|
2006-12-29 00:46:55 +01:00
|
|
|
#exclude => qr/*\.wav/,
|
2006-05-29 07:09:43 +02:00
|
|
|
# Time format (for strftime)
|
|
|
|
#timeformat => '%c',
|
2006-07-29 23:04:31 +02:00
|
|
|
# Locale to use. Must be a UTF-8 locale.
|
|
|
|
#locale => 'en_US.UTF-8',
|
2006-08-27 22:25:05 +02:00
|
|
|
# Only send cookies over SSL connections.
|
|
|
|
#sslcookie => 1,
|
2006-08-16 23:17:49 +02:00
|
|
|
# Logging settings:
|
|
|
|
verbose => 0,
|
|
|
|
syslog => 0,
|
2006-12-19 17:58:55 +01:00
|
|
|
# To link to user pages in a subdirectory of the wiki.
|
|
|
|
#userdir => "users",
|
2007-04-30 00:54:14 +02:00
|
|
|
# To create output files named page.html rather than page/index.html.
|
|
|
|
#usedirs => 0,
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-07-03 23:29:56 +02:00
|
|
|
# To add plugins, list them here.
|
2007-04-30 00:54:14 +02:00
|
|
|
#add_plugins => [qw{goodstuff search wikitext camelcase
|
2007-02-02 03:33:03 +01:00
|
|
|
# htmltidy fortune sidebar map rst anonok}],
|
2006-07-03 23:29:56 +02:00
|
|
|
# If you want to disable any of the default plugins, list them here.
|
2007-04-30 00:54:14 +02:00
|
|
|
#disable_plugins => [qw{inline htmlscrubber passwordauth openid}],
|
2006-09-18 22:53:17 +02:00
|
|
|
|
|
|
|
# For use with the tag plugin, make all tags be located under a
|
|
|
|
# base page.
|
2007-01-15 04:22:17 +01:00
|
|
|
#tagbase => "tag",
|
2007-02-09 03:59:19 +01:00
|
|
|
|
|
|
|
# For use with the search plugin if your estseek.cgi is located
|
2006-09-18 22:53:17 +02:00
|
|
|
# somewhere else.
|
|
|
|
#estseek => "/usr/lib/estraier/estseek.cgi",
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-11-20 10:40:09 +01:00
|
|
|
# For use with the openid plugin, to give an url to a page users
|
|
|
|
# can use to signup for an OpenID.
|
|
|
|
#openidsignup => "http://myopenid.com/",
|
2007-02-09 03:59:19 +01:00
|
|
|
|
2006-12-23 02:07:11 +01:00
|
|
|
# For use with the mirrorlist plugin, a list of mirrors.
|
|
|
|
#mirrorlist => {
|
|
|
|
# mirror1 => "http://hostname1",
|
|
|
|
# mirror2 => "http://hostname2/mirror",
|
|
|
|
#},
|
2006-03-15 04:24:34 +01:00
|
|
|
}
|