summaryrefslogtreecommitdiff
path: root/doc/ikiwiki.setup
blob: 006f4dd70bc3fd71b06060bfda94a33325b61b87 (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. # Subversion stuff.
  18. #rcs => "svn",
  19. #historyurl => "http://svn.example.org/trunk/[[file]]",
  20. #diffurl => "http://svn.example.org/trunk/[[file]]?root=wiki&r1=[[r1]]&r2=[[r2]]",
  21. #svnrepo => "/svn/wiki",
  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/", # hg serve'd local repository
  36. #diffurl => "http://localhost:8000/?fd=[[changeset]];file=[[file]]",
  37. wrappers => [
  38. #{
  39. # # The cgi wrapper.
  40. # cgi => 1,
  41. # wrapper => "/var/www/wiki/ikiwiki.cgi",
  42. # wrappermode => "06755",
  43. #},
  44. #{
  45. # # The svn post-commit wrapper.
  46. # # Note that this will overwrite any existing
  47. # # post-commit hook script, which may not be
  48. # # what you want.
  49. # wrapper => "/svn/wikirepo/hooks/post-commit",
  50. # wrappermode => "04755",
  51. # # Enable mail notifications of commits.
  52. # notify => 1,
  53. #},
  54. #{
  55. # # The git post-update wrapper.
  56. # # Note that this will overwrite any existing
  57. # # post-update hook script, which may not be
  58. # # what you want.
  59. # wrapper => "/git/wiki.git/hooks/post-update",
  60. # wrappermode => "04755",
  61. # # Enable mail notifications of commits.
  62. # notify => 1,
  63. #},
  64. ],
  65. # Generate rss feeds for blogs?
  66. rss => 1,
  67. # Generate atom feeds for blogs?
  68. atom => 1,
  69. # Urls to ping with XML-RPC when rss feeds are updated
  70. #pingurl => [qw{http://rpc.technorati.com/rpc/ping}],
  71. # Include discussion links on all pages?
  72. discussion => 1,
  73. # To exclude files matching a regexp from processing. This adds to
  74. # the default exclude list.
  75. #exclude => qr/*\.wav/,
  76. # Time format (for strftime)
  77. #timeformat => '%c',
  78. # Locale to use. Must be a UTF-8 locale.
  79. #locale => 'en_US.UTF-8',
  80. # Only send cookies over SSL connections.
  81. #sslcookie => 1,
  82. # Logging settings:
  83. verbose => 0,
  84. syslog => 0,
  85. # To link to user pages in a subdirectory of the wiki.
  86. #userdir => "users",
  87. # To add plugins, list them here.
  88. #add_plugins => [qw{goodstuff openid search wikitext camelcase
  89. # htmltidy fortune sidebar map rst anonok}],
  90. # If you want to disable any of the default plugins, list them here.
  91. #disable_plugins => [qw{inline htmlscrubber passwordauth}],
  92. # For use with the tag plugin, make all tags be located under a
  93. # base page.
  94. #tagbase => "tag",
  95. # For use with the search plugin if your estseek.cgi is located
  96. # somewhere else.
  97. #estseek => "/usr/lib/estraier/estseek.cgi",
  98. # For use with the openid plugin, to give an url to a page users
  99. # can use to signup for an OpenID.
  100. #openidsignup => "http://myopenid.com/",
  101. # For use with the mirrorlist plugin, a list of mirrors.
  102. #mirrorlist => {
  103. # mirror1 => "http://hostname1",
  104. # mirror2 => "http://hostname2/mirror",
  105. #},
  106. }