diff options
Diffstat (limited to 'ikiwiki_da_admin.setup')
-rw-r--r-- | ikiwiki_da_admin.setup | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/ikiwiki_da_admin.setup b/ikiwiki_da_admin.setup index 9e7951a..d3a64c9 100644 --- a/ikiwiki_da_admin.setup +++ b/ikiwiki_da_admin.setup @@ -7,18 +7,18 @@ # Remember to re-run ikiwiki --setup any time you edit this file. our $libdir; -our $adminwebdir; -our $admincgidir; +our $admindawebdir; +our $admindacgidir; our $gitdir; -our $adminwebhost; +our $admindawebhost; our $githost; our $gitrepo; BEGIN { $libdir = $ENV{'PWD'} . '/perl'; - $adminwebdir = 'build/html-admin'; - $admincgidir = 'build/cgi-admin'; + $admindawebdir = 'build/html-da-admin'; + $admindacgidir = 'build/cgi-da-admin'; $gitdir = 'build/git'; - $adminwebhost = 'admin.wiki.example.org'; + $admindawebhost = 'admin.da.wiki.example.org'; $githost = 'git.example.org'; $gitrepo = 'wiki'; } @@ -33,15 +33,15 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => 'content', + srcdir => 'content_da', # where to build the wiki - destdir => $adminwebdir, + destdir => $admindawebdir, # base url to the wiki - url => 'http://' . $adminwebhost . '/', + url => 'http://' . $admindawebhost . '/', # url to the ikiwiki.cgi - cgiurl => 'http://' . $adminwebhost . '/ikiwiki.cgi', + cgiurl => 'http://' . $admindawebhost . '/ikiwiki.cgi', # cgi wrapper to generate - cgi_wrapper => $admincgidir . '/ikiwiki.cgi', + cgi_wrapper => $admindacgidir . '/ikiwiki.cgi', # mode for cgi_wrapper (can safely be made suid) cgi_wrappermode => '00755', # rcs backend to use @@ -53,9 +53,9 @@ use IkiWiki::Setup::Standard { disable_plugins => [qw{ }], # location of template files - templatedir => 'templates', + templatedir => 'templates_da', # base wiki source location - underlaydir => 'basewiki', + underlaydir => 'basewiki_da', # display verbose messages when building? #verbose => 1, # log to syslog? |