]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/plugins/mirrorlist.mdwn
Merge remote-tracking branch 'intrigeri/mirrorlist'
[ikiwiki.git] / doc / plugins / mirrorlist.mdwn
index b371e8eb7f9a36f4462f49077a41e5d0ae7a2754..b636858132b74b12294279aba1c4afa882f679b1 100644 (file)
@@ -1,7 +1,22 @@
 [[!template id=plugin name=mirror author="[[Joey]]"]]
-[[!tag type/special-purpose]]
+[[!tag type/web]]
 
 This plugin allows adding links a list of mirrors to each page in the
 wiki. For each mirror, a name and an url should be specified. Pages are
 assumed to exist in the same location under the specified url on each
 mirror.
+
+In case the `usedirs` setting is not the same on all your mirrors, or
+if it is not the same on your local wiki as on the mirror a
+possibility is to let each mirror's ikiwiki CGI find out the correct
+target page url themselves; in that case the mirrors urls must be set
+to their ikiwiki CGI url instead of their base url. Example:
+
+       mirrorlist_use_cgi => 1,
+       mirrorlist => {
+               'mirror1' => 'https://mirror.example.org/ikiwiki.cgi',
+               'mirror2' => 'https://mirror2.example.org/ikiwiki.cgi',
+       },
+
+The mirrors must have the ikiwiki CGI and the [[goto]] plugin enabled
+for this to work.