diff options
Diffstat (limited to 'ikiwiki_da.setup')
-rw-r--r-- | ikiwiki_da.setup | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/ikiwiki_da.setup b/ikiwiki_da.setup index 68e51f8..29a8485 100644 --- a/ikiwiki_da.setup +++ b/ikiwiki_da.setup @@ -15,7 +15,7 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => $ENV{'HOME'} . '/private_webdata/samplewiki/content_da', + srcdir => $ENV{'HOME'} . '/private_webdata/samplewiki/content_dummy_da', # where to build the wiki destdir => $ENV{'HOME'} . '/public_websites/wiki.example.org', # base url to the wiki @@ -27,14 +27,19 @@ use IkiWiki::Setup::Standard { # mode for cgi_wrapper (can safely be made suid) cgi_wrappermode => '00755', # rcs backend to use - rcs => '', + rcs => 'git', # plugins to add to the default configuration add_plugins => [], # plugins to disable - disable_plugins => [], + disable_plugins => [qw{ + editpage + }], # location of template files templatedir => $ENV{'HOME'} . '/private_webdata/samplewiki/templates_da', # base wiki source location + underlaydirs => [ + $ENV{'HOME'} . '/private_webdata/samplewiki/content_da', + ], underlaydir => $ENV{'HOME'} . '/private_webdata/samplewiki/basewiki_da', # display verbose messages when building? #verbose => 1, @@ -125,7 +130,7 @@ use IkiWiki::Setup::Standard { # git hook to generate git_wrapper => $ENV{'HOME'} . '/public_websites/git.example.org/samplewiki_content.git/hooks/post-update-ikiwiki-da', # mode for git_wrapper (can safely be made suid) - #git_wrappermode => '06755', + git_wrappermode => '06755', # gitweb url to show file history ([[file]] substituted) #historyurl => 'http://git.example.org/gitweb.cgi?p=wiki.git;a=history;f=[[file]];hb=master-da', # gitweb url to show a diff ([[sha1_to]], [[sha1_from]], [[sha1_parent]], and [[file]] substituted) @@ -256,4 +261,11 @@ use IkiWiki::Setup::Standard { #websetup_force_plugins => [], # show unsafe settings, read-only, in web interface? #websetup_show_unsafe => 1, + + # varioki plugin (strings are eval'ed: double-quote actual strings!) + #varioki => { + # 'branding_logo_text' => '"Example Website"', + # 'branding_logo' => '"logo.png"', + # 'branding_logo_tagline' => '"Yet another ikiwiki site!"', + #}, } |