diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-15 03:24:34 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-03-15 03:24:34 +0000 |
commit | 0a52e8fd82d80bdd1290f49c3187d3f72db39c75 (patch) | |
tree | a7ebf87944648b6837e837bbd7be9c472be38bcd /doc/ikiwiki.setup | |
parent | 2d1989983e8978f024bbb8fdd0e68445913c0a8e (diff) | |
download | ikiwiki-0a52e8fd82d80bdd1290f49c3187d3f72db39c75.tar ikiwiki-0a52e8fd82d80bdd1290f49c3187d3f72db39c75.tar.gz |
config files now based on perl modules
add MakeMaker foo for module
Diffstat (limited to 'doc/ikiwiki.setup')
-rw-r--r-- | doc/ikiwiki.setup | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/doc/ikiwiki.setup b/doc/ikiwiki.setup index e8048c3b0..c03092b7a 100644 --- a/doc/ikiwiki.setup +++ b/doc/ikiwiki.setup @@ -5,7 +5,7 @@ # # Remember to re-run ikiwiki --setup any time you edit this file. -%setup=( +use IkiWiki::Setup::Standard { wikiname => "MyWiki", # Be sure to customise these.. @@ -21,21 +21,25 @@ svn => 1, svnrepo => "/svn/wiki", - # The svn wrapper. - svnwrapper => { - # Note that this will overwrite any exsting post-commit hoo - # script, which may not be what you want. - wrapper => "$config{svnrepo}/hooks/post-commit", - wrappermode => 04755, - }, + wrappers => [ + { + # The svn wrapper. + # Note that this will overwrite any exsting + # post-commit hook script, which may not be + # what you want. + wrapper => "$config{svnrepo}/hooks/post-commit", + wrappermode => 04755, + }, + { + # The cgi wrapper. + #cgiwrapper => { + # cgi => 1, + # wrapper => "/var/www/wiki/ikiwiki.cgi", + # wrappermode => 06755, + #}, + }, + ], - # The cgi wrapper. - #cgiwrapper => { - # cgi => 1, - # wrapper => "/var/www/wiki/ikiwiki.cgi", - # wrappermode => 06755, - #}, - # Can anonymous web users edit pages? #anonok => 1, -); +} |