Updates the sample config file to support the systemd-level privilege
dropping, as given by the upstream service file.
Closes: https://bugs.gentoo.org/673978
Signed-off-by: William Pettersson <william@ewpettersson.se>
Signed-off-by: Michael Palimaka <kensington@gentoo.org>
# Multiplexing example
# Port 44 can be used for ssh, http, and https. Drop privileges after starting.
+# Note that this example is not compatible with systemd, as privilege dropping
+# is now handled by systemd.
#DAEMON_OPTS="-p localhost:44 --ssh 127.0.0.1:22 --http 127.0.0.1:80 --ssl 127.0.0.1:443 --user nobody"
+#
+# Port 44 can be used for ssh, http, and https. This is the same configuration
+# as the above, but compatible with systemd.
+#DAEMON_OPTS="-p localhost:44 --ssh 127.0.0.1:22 --http 127.0.0.1:80 --ssl 127.0.0.1:443"