You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/memcached/files/memcached.confd

41 lines
872 B

# memcached config file
MEMCACHED_BINARY="/usr/bin/memcached"
# Specify memory usage in megabytes (do not use letters)
# 64MB is default
MEMUSAGE="64"
# User to run as
MEMCACHED_RUNAS="memcached"
# Specify maximum number of concurrent connections
# 1024 is default
MAXCONN="1024"
# Listen for connections on what address?
# If this is empty, memcached will listen on 0.0.0.0
# be sure you have a firewall in place!
LISTENON=""
# Listen for connections on what port?
PORT="11211"
# Listen for UDP connecitons on what port? 0 means turn off UDP
UDPPORT="${PORT}"
# PID file location
# '-${PORT}.${CONF}.pid' will be appended to this!
# You do not normally need to change this.
PIDBASE="/var/run/memcached/memcached"
# Socket to listen on
#SOCKET="/var/run/memcached/memcached.sock"
# Socket mask
# 0700 is default
#SOCKET_MASK="0700"
# Other Options
MISC_OPTS=""