blob: 47a42c75c112d0bb7eeca2b1ae872d76f057ee5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/files/conf-1.9,v 1.1 2014/03/31 06:34:28 patrick Exp $
BEANSTALKD_BINARY="/usr/bin/beanstalkd"
PIDFILE="/run/beanstalkd.pid"
# User to run as
USER="beanstalk"
# Port to listen on
PORT="11300"
# Address to listen on
ADDR="127.0.0.1"
# Datadir (where to store queue)
DATADIR="/var/lib/beanstalkd"
# Max job size
JOB_SIZE="65536"
|