aboutsummaryrefslogtreecommitdiff
path: root/network/gmid/README
diff options
context:
space:
mode:
Diffstat (limited to 'network/gmid/README')
-rw-r--r--network/gmid/README24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/gmid/README b/network/gmid/README
new file mode 100644
index 0000000000000..263b79c496dd4
--- /dev/null
+++ b/network/gmid/README
@@ -0,0 +1,24 @@
+It can serve static files, has optional FastCGI and proxying support,
+and a rich configuration syntax.
+
+To have the gmid daemon start and stop with your host, add to
+/etc/rc.d/rc.local:
+
+ if [ -x /etc/rc.d/rc.gmid ]; then
+ /etc/rc.d/rc.gmid start
+ fi
+
+and to /etc/rc.d/rc.local_shutdown (creating it if needed):
+
+ if [ -x /etc/rc.d/rc.gmid ]; then
+ /etc/rc.d/rc.gmid stop
+ fi
+
+The service is configured to run as the 'gmid' user. To add this user:
+
+ useradd gmid \
+ --comment 'gmid gemini server' \
+ --gid 387 \
+ --home-dir /srv/gmid \
+ --system \
+ --uid 387