summaryrefslogtreecommitdiff
path: root/ADMIN.md
diff options
context:
space:
mode:
Diffstat (limited to 'ADMIN.md')
-rw-r--r--ADMIN.md31
1 files changed, 26 insertions, 5 deletions
diff --git a/ADMIN.md b/ADMIN.md
index 5b4635a..c530cad 100644
--- a/ADMIN.md
+++ b/ADMIN.md
@@ -3,8 +3,8 @@
## Special strings
-NB! This documentation uses special strings
-which you may want to adapt for your local setup:
+NB! This documentation includes the following special strings
+used e.g. when generating a documentation website:
gitshellhost: git.example.org
@@ -19,7 +19,28 @@ Clone the gitolite3 settings repository:
## Web export
edit the file gitolite.conf
-to add FIXME to repos that should be exported for web publishing,
-e.g. add these likes to add repository "foobar":
+to add a section for each git repository it should host,
+defining access rights,
+and passing hints to a server-side export hook.
- FIXME
+
+### Simple web hosting
+
+E.g. like this for an example repository "foobar",
+with a simple web export of the git branch "main":
+
+```
+repo foobar
+ RW+ = @all
+ option ENV.WEB_BRANCH = main
+```
+
+
+### Ikiwiki web hosting
+
+```
+repo some-iki-site
+ RW+ = @all
+ option ENV.WEB_BRANCH = main
+ option ENV.WEB_BRANCH = main
+```