30 lines
743 B
Plaintext
30 lines
743 B
Plaintext
# System configuration for the beanstalkd daemon
|
|
|
|
#
|
|
# beanstalkd commandline options
|
|
#
|
|
|
|
ADDR=-l 0.0.0.0
|
|
PORT=-p 11300
|
|
USER=-u beanstalkd
|
|
|
|
# Job size is left to the default. Uncomment and set it
|
|
# to a value to have it take affect.
|
|
#MAX_JOB_SIZE=-z 65535
|
|
|
|
# Using the binlog is off by default.
|
|
#
|
|
# The direcory to house the binlog.
|
|
#BINLOG_DIR=-b /var/lib/beanstalkd/binlog
|
|
#
|
|
# fsync the binlog at most once every N milliseconds.
|
|
# setting this to 0 means 'always fsync'. If this is unset,
|
|
# and the binlog is used, then no explicit fsync is ever
|
|
# performed. That is, the -F option is used.
|
|
#BINLOG_FSYNC_PERIOD=-f some-value
|
|
#
|
|
# The size of each binlog file. This is rounded
|
|
# up to the nearest 512 byte boundary.
|
|
#BINLOG_SIZE=-s 10485760
|
|
|