summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@omgwallhack.org>2013-09-08 22:39:41 -0700
committerJoe Rayhawk <jrayhawk@omgwallhack.org>2013-09-08 22:39:41 -0700
commit1f4b5e2e6c45cc4ab73604f12685868d12ec6338 (patch)
tree0afe20d7574d0a8d84204b4a6c42336460af7602
parent7206ff4555bb2f2ce0cbc610a8f88fe853d5801b (diff)
downloadjrayhawk-1f4b5e2e6c45cc4ab73604f12685868d12ec6338.tar.gz
jrayhawk-1f4b5e2e6c45cc4ab73604f12685868d12ec6338.zip
Updates for statedir
-rw-r--r--notes/ikiwiki_setup_mangling.mdwn3
1 files changed, 2 insertions, 1 deletions
diff --git a/notes/ikiwiki_setup_mangling.mdwn b/notes/ikiwiki_setup_mangling.mdwn
index e979458..0122140 100644
--- a/notes/ikiwiki_setup_mangling.mdwn
+++ b/notes/ikiwiki_setup_mangling.mdwn
@@ -27,13 +27,14 @@ the cgi-related functions. Note that you'll later have to deal with errors about
delete $config->{wrappers};
# delete cgi-relevant plugins
- @{$config->{add_plugins}} = grep(!/^(wmd|httpauth)$/, @{$config->{add_plugins}});
+ @{$config->{add_plugins}} = grep(!/^(wmd|httpauth|attachment|rename|remove|search)$/, @{$config->{add_plugins}});
push(@{$config->{disable_plugins}}, 'recentchanges');
$config->{destdir} = '/srv/www/www.tovatest.com';
$config->{url} = 'http://www.tovacompany.com';
+ $config->{wikistatedir} = '/srv/ikiwiki/tovawiki/.ikiwiki-live';
my $newconfig = Data::Dumper->new( [ $config ] );
$newconfig->Terse( 1 );