#!/usr/bin/perl # Configuration file for ikiwiki. # Passing this to ikiwiki --setup will make ikiwiki generate wrappers and # build the wiki. # # Remember to re-run ikiwiki --setup any time you edit this file. use IkiWiki::Setup::Standard { wikiname => "cypherprank machine", adminuser => ["rhatto", ], adminemail => 'rhatto@riseup.net', srcdir => ".", destdir => "www", url => "https://rhatto.fluxo.info", cgiurl => "https://rhatto.fluxo.info/ikiwiki.cgi", # Git stuff. rcs => "git", historyurl => "https://git.fluxo.info/?p=rhatto.git;a=history;f=[[file]]", diffurl => "https://git.fluxo.info/?p=rhatto.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]", # See https://ikiwiki.info/tips/laptop_wiki_with_git/ gitorigin_branch => '', wrappers => [ ], # Default to generating rss feeds for pages with feeds? rss => 1, # Default to generating atom feeds for pages with feeds? #atom => 1, # Allow generating feeds even if not generated by default? #allowrss => 1, #allowatom => 1, # Urls to ping with XML-RPC when feeds are updated #pingurl => [qw{http://rpc.technorati.com/rpc/ping}], # Include discussion links on all pages? discussion => 0, # To exclude files matching a regexp from processing. This adds to # the default exclude list. # # Make sure to delete .ikiwiki/indexdb if you also change this, see # https://ikiwiki.info/forum/Need_something_more_powerful_than_Exclude/ exclude => qr/(www|drafts)/i, # See https://ikiwiki.info/tips/htaccess_file/ include => '^\.htaccess$', # Time format (for strftime) #timeformat => '%c', # Locale to use. Must be a UTF-8 locale. #locale => 'en_US.UTF-8', # Uncomment to force ikiwiki to run with a particular umask. umask => 002, # To add or disable plugins, list them here. add_plugins => [qw{goodstuff sidebar}], disable_plugins => [qw{openid editpage}], }