blob: 7a482e9989c86e533763a5cdf805a52e0f08974d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# The port on which the mw-qserve service is listening
MW_QSERVE_PORT=14311
# The interface on which the mw-qserve is listening (for example: 127.0.0.1)
MW_QSERVE_INTERFACE="127.0.0.1"
# The port to listen to
NSERVE_PORT=8899
# The interface to listen to (for example: 127.0.0.1)
NSERVE_INTERFACE="127.0.0.1"
# The user running the nserve service, defaults to 'mwlib'
# NSERVE_USER="mwlib"
# The group running the nserve service, defaults to 'mwlib'
# NSERVE_GROUP="mwlib"
# The logfile collecting all output from stdout and stderr, comment out for no logging
NSERVE_LOGFILE="/var/log/mwlib/nserve.log"
|