diff options
author | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2013-09-08 22:39:41 -0700 |
---|---|---|
committer | Joe Rayhawk <jrayhawk@omgwallhack.org> | 2013-09-08 22:39:41 -0700 |
commit | 1f4b5e2e6c45cc4ab73604f12685868d12ec6338 (patch) | |
tree | 0afe20d7574d0a8d84204b4a6c42336460af7602 | |
parent | 7206ff4555bb2f2ce0cbc610a8f88fe853d5801b (diff) | |
download | jrayhawk-1f4b5e2e6c45cc4ab73604f12685868d12ec6338.tar.gz jrayhawk-1f4b5e2e6c45cc4ab73604f12685868d12ec6338.zip |
Updates for statedir
-rw-r--r-- | notes/ikiwiki_setup_mangling.mdwn | 3 |
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 ); |