summaryrefslogtreecommitdiff
path: root/doc/ikiwiki.setup
blob: f808be2c2bf01d81948bf6bf2102da21d36f436d (plain)
  1. #!/usr/bin/perl
  2. # Configuration file for ikiwiki.
  3. # Passing this to ikiwiki --setup will make ikiwiki generate wrappers and
  4. # build the wiki.
  5. #
  6. # Remember to re-run ikiwiki --setup any time you edit this file.
  7. use IkiWiki::Setup::Standard {
  8. wikiname => "MyWiki",
  9. #adminuser => ["yourname", ],
  10. adminemail => 'me@example.org',
  11. # Be sure to customise these..
  12. srcdir => "/path/to/source",
  13. destdir => "/var/www/wiki",
  14. url => "http://example.org/wiki",
  15. cgiurl => "http://example.org/ikiwiki.cgi",
  16. #templatedir => "/usr/share/ikiwiki/templates",
  17. #underlaydir => "/usr/share/ikiwiki/basewiki",
  18. # Subversion stuff.
  19. #rcs => "svn",
  20. #historyurl => "http://svn.example.org/trunk/[[file]]",
  21. #diffurl => "http://svn.example.org/trunk/[[file]]?root=wiki&r1=[[r1]]&r2=[[r2]]",
  22. #svnpath => "trunk",
  23. # Git stuff.
  24. #rcs => "git",
  25. #historyurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=history;f=[[file]]",
  26. #diffurl => "http://git.example.org/gitweb.cgi?p=wiki.git;a=blobdiff;h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_parent]];f=[[file]]",
  27. #gitorigin_branch => "origin",
  28. #gitmaster_branch => "master",
  29. # Tla stuff.
  30. #rcs => "tla"
  31. #historyurl => ??,
  32. #diffurl => ??,
  33. # Mercurial stuff.
  34. #rcs => "mercurial",
  35. #historyurl => "http://localhost:8000/log/tip/[[file]]", # hg serve'd local repository
  36. #diffurl => "http://localhost:8000/?fd=[[r2]];file=[[file]]",
  37. # Bazaar stuff.
  38. #rcs => "bzr",
  39. #historyurl => "",
  40. #diffurl => "http://example.com/revision?start_revid=[[r2]]#[[file]]-s", # using loggerhead
  41. # Monotone stuff
  42. #rcs => "monotone",
  43. #mtnkey => "web\@machine.company.com",
  44. # Set if you want the wiki to sync on update and commit.
  45. #mtnsync => 0,
  46. # The path to your workspace (defaults to the srcdir itself)
  47. # e.g. use if your srcdir is a subdirectory of the workspace.
  48. #mtnrootdir => "path/to/root/of/workspace",
  49. # This is a monotone lua hook file used by ikiwiki for
  50. # inserting conflict markers. By default it will use
  51. # mtnrootdir/_MTN/mergerc. This hook will be populated with
  52. # default code the first time you use ikiwiki. You can
  53. # change it to alter how conflict markers are inserted.
  54. #mtnmergerc => "path/to/mergerc",
  55. wrappers => [
  56. #{
  57. # # The cgi wrapper.
  58. # cgi => 1,
  59. # wrapper => "/var/www/wiki/ikiwiki.cgi",
  60. # wrappermode => "06755",
  61. #},
  62. #{
  63. # # The svn post-commit wrapper.
  64. # # Note that this will overwrite any existing
  65. # # post-commit hook script, which may not be
  66. # # what you want.
  67. # wrapper => "/svn/wikirepo/hooks/post-commit",
  68. # wrappermode => "04755",
  69. # # Log to syslog since svn post-commit hooks
  70. # # hide output and errors.
  71. # syslog => 1,
  72. #},
  73. #{
  74. # # The git post-update wrapper.
  75. # # Note that this will overwrite any existing
  76. # # post-update hook script, which may not be
  77. # # what you want.
  78. # wrapper => "/git/wiki.git/hooks/post-update",
  79. # wrappermode => "06755",
  80. #},
  81. ],
  82. # Generate rss feeds for blogs?
  83. rss => 1,
  84. # Generate atom feeds for blogs?
  85. atom => 1,
  86. # Urls to ping with XML-RPC when rss feeds are updated
  87. #pingurl => [qw{http://rpc.technorati.com/rpc/ping}],
  88. # Include discussion links on all pages?
  89. discussion => 1,
  90. # To exclude files matching a regexp from processing. This adds to
  91. # the default exclude list.
  92. #exclude => qr/*\.wav/,
  93. # To change the extension used for generated html files.
  94. #htmlext => 'htm',
  95. # Time format (for strftime)
  96. #timeformat => '%c',
  97. # Locale to use. Must be a UTF-8 locale.
  98. #locale => 'en_US.UTF-8',
  99. # Only send cookies over SSL connections.
  100. #sslcookie => 1,
  101. # Logging settings:
  102. #verbose => 1,
  103. syslog => 0,
  104. # To link to user pages in a subdirectory of the wiki.
  105. #userdir => "users",
  106. # To create output files named page.html rather than page/index.html.
  107. #usedirs => 0,
  108. # Simple spam prevention: require an account-creation password.
  109. #account_creation_password => "example",
  110. # Uncomment to force ikiwiki to run with a particular umask.
  111. #umask => 022,
  112. # Default settings for the recentchanges page.
  113. #recentchangespage => "recentchanges",
  114. #recentchangesnum => 100,
  115. # To add plugins, list them here.
  116. #add_plugins => [qw{goodstuff search wikitext camelcase
  117. # htmltidy fortune sidebar map rst anonok}],
  118. # If you want to disable any of the default plugins, list them here.
  119. #disable_plugins => [qw{inline htmlscrubber passwordauth openid}],
  120. # To add a directory to the perl search path, use this.
  121. #libdir => "/home/me/.ikiwiki/",
  122. # For use with the tag plugin, make all tags be located under a
  123. # base page.
  124. #tagbase => "tag",
  125. # For use with the search plugin if your estseek.cgi is located
  126. # somewhere else.
  127. #estseek => "/usr/lib/estraier/estseek.cgi",
  128. # For use with the openid plugin, to give an url to a page users
  129. # can use to signup for an OpenID.
  130. #openidsignup => "http://myopenid.com/",
  131. # For use with the mirrorlist plugin, a list of mirrors.
  132. #mirrorlist => {
  133. # mirror1 => "http://hostname1",
  134. # mirror2 => "http://hostname2/mirror",
  135. #},
  136. }