1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
# Put options for gopherd in here. Set options to "" to not set
# or follow the comments. If chroot is enabled, you wiill not be able
# to use decoders unless you copy them under your gopher root. The
# same goes for calling other scripts, and there may be logging
# difficulties.
# Set DONTCHROOT to -c if you don't want to use chroot.
# DONTCHROOT="-c"
DONTCHROOT=""
# The username that you run gopher as. Leave blank to run as root.
# USEUID=""
USEUID="-u gopher"
# The option file for gopher.
OPTIONFILE="-o /etc/gopherd/gopherd.conf"
# Logging. Set to the empty string to disable.
#LOGGING=""
LOGGING="-l /var/log/gopherd.log"
# The home for gopher.
GOPHERHOME="/var/gopher"
# Gopher's port.
GOPHERPORT="70"
# Any other options to pass along.
OTHEROPTS=""
|