commit 4d2d23e1b7e27a249f942ede4afdf585288334aa (patch)
parent 02a65f788ce236aadcec24c0da31ec80aabcf563
Author: Alex Karle <alex@alexkarle.com>
Date: Thu, 24 Dec 2020 00:25:41 -0500
doc: Add note about deamonization to README
This is truly something I forgot about (and worth documenting), but I'm
also making this change to test my git.alexkarle.com mirroring to GitHub
and sr.ht :)
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md
@@ -52,6 +52,14 @@ $ ./build.sh
$ ./build/gloat.pl daemon
```
+To actually daemonize (in a production environment), run with `-m production`.
+This will log to /var/log/gloat, which should exist and be writable to the
+server.
+
+```sh
+$ ./build/gloat.pl daemon -m production
+```
+
Hacking
-------