2007-10-17 04:33:19 +02:00
|
|
|
#
|
2009-04-22 15:45:57 +02:00
|
|
|
# In this file you can configure options that are passed by ejabberdctl
|
2007-12-02 22:13:25 +01:00
|
|
|
# to the erlang runtime system when starting ejabberd
|
|
|
|
#
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#' POLL: Kernel polling ([true|false])
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2007-12-02 22:13:25 +01:00
|
|
|
# The kernel polling option requires support in the kernel.
|
2009-04-22 15:45:57 +02:00
|
|
|
# Additionally, you need to enable this feature while compiling Erlang.
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
# Default: true
|
2007-12-02 22:13:25 +01:00
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
#POLL=true
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
|
|
|
#' SMP: SMP support ([enable|auto|disable])
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2007-12-02 22:13:25 +01:00
|
|
|
# Explanation in Erlang/OTP documentation:
|
2009-04-22 15:45:57 +02:00
|
|
|
# enable: starts the Erlang runtime system with SMP support enabled.
|
2007-12-02 22:13:25 +01:00
|
|
|
# This may fail if no runtime system with SMP support is available.
|
|
|
|
# auto: starts the Erlang runtime system with SMP support enabled if it
|
|
|
|
# is available and more than one logical processor are detected.
|
|
|
|
# disable: starts a runtime system without SMP support.
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
# Default: auto
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
#SMP=auto
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
|
|
|
#' ERL_MAX_PORTS: Maximum number of simultaneously open Erlang ports
|
2007-12-02 22:13:25 +01:00
|
|
|
#
|
2009-04-22 15:45:57 +02:00
|
|
|
# ejabberd consumes two or three ports for every connection, either
|
2007-12-06 22:42:47 +01:00
|
|
|
# from a client or from another Jabber server. So take this into
|
|
|
|
# account when setting this limit.
|
2007-12-02 22:13:25 +01:00
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
# Default: 32000
|
2007-12-02 22:13:25 +01:00
|
|
|
# Maximum: 268435456
|
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
#ERL_MAX_PORTS=32000
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
|
|
|
#' FIREWALL_WINDOW: Range of allowed ports to pass through a firewall
|
2008-04-01 11:07:29 +02:00
|
|
|
#
|
|
|
|
# If Ejabberd is configured to run in cluster, and a firewall is blocking ports,
|
2009-04-22 15:45:57 +02:00
|
|
|
# it's possible to make Erlang use a defined range of port (instead of dynamic
|
|
|
|
# ports) for node communication.
|
2008-04-01 11:07:29 +02:00
|
|
|
#
|
|
|
|
# Default: not defined
|
|
|
|
# Example: 4200-4210
|
|
|
|
#
|
|
|
|
#FIREWALL_WINDOW=
|
|
|
|
|
2011-02-16 23:53:29 +01:00
|
|
|
#.
|
|
|
|
#' INET_DIST_INTERFACE: IP address where this Erlang node listens other nodes
|
|
|
|
#
|
|
|
|
# This communication is used by ejabberdctl command line tool,
|
|
|
|
# and in a cluster of several ejabberd nodes.
|
|
|
|
# Notice that the IP address must be specified in the Erlang syntax.
|
|
|
|
#
|
|
|
|
# Default: {127,0,0,1}
|
|
|
|
#
|
|
|
|
INET_DIST_INTERFACE={127,0,0,1}
|
|
|
|
|
2011-05-31 12:26:44 +02:00
|
|
|
#.
|
|
|
|
#' ERL_EPMD_ADDRESS: IP addresses where epmd listens for connections
|
|
|
|
#
|
|
|
|
# IMPORTANT: This option works only in Erlang/OTP R14B03 and newer.
|
|
|
|
#
|
|
|
|
# This environment variable may be set to a comma-separated
|
|
|
|
# list of IP addresses, in which case the epmd daemon
|
|
|
|
# will listen only on the specified address(es) and on the
|
|
|
|
# loopback address (which is implicitly added to the list if it
|
|
|
|
# has not been specified). The default behaviour is to listen on
|
|
|
|
# all available IP addresses.
|
|
|
|
#
|
|
|
|
# Default: 0.0.0.0
|
|
|
|
#
|
|
|
|
#ERL_EPMD_ADDRESS=127.0.0.1
|
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
2010-02-03 16:04:56 +01:00
|
|
|
#' ERL_PROCESSES: Maximum number of Erlang processes
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
|
|
|
# Erlang consumes a lot of lightweight processes. If there is a lot of activity
|
2009-04-22 15:45:57 +02:00
|
|
|
# on ejabberd so that the maximum number of processes is reached, people will
|
2011-03-17 12:15:31 +01:00
|
|
|
# experience greater latency times. As these processes are implemented in
|
2007-10-17 04:33:19 +02:00
|
|
|
# Erlang, and therefore not related to the operating system processes, you do
|
|
|
|
# not have to worry about allowing a huge number of them.
|
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
# Default: 250000
|
2007-12-02 22:13:25 +01:00
|
|
|
# Maximum: 268435456
|
|
|
|
#
|
2010-02-03 16:04:56 +01:00
|
|
|
#ERL_PROCESSES=250000
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
|
|
|
#' ERL_MAX_ETS_TABLES: Maximum number of ETS and Mnesia tables
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
|
|
|
# The number of concurrent ETS and Mnesia tables is limited. When the limit is
|
|
|
|
# reached, errors will appear in the logs:
|
2007-12-02 22:13:25 +01:00
|
|
|
# ** Too many db tables **
|
2007-10-17 04:33:19 +02:00
|
|
|
# You can safely increase this limit when starting ejabberd. It impacts memory
|
|
|
|
# consumption but the difference will be quite small.
|
2007-12-02 22:13:25 +01:00
|
|
|
#
|
|
|
|
# Default: 1400
|
|
|
|
#
|
2008-01-01 11:53:05 +01:00
|
|
|
#ERL_MAX_ETS_TABLES=1400
|
2007-10-17 04:33:19 +02:00
|
|
|
|
2009-04-22 15:45:57 +02:00
|
|
|
#.
|
2009-05-16 00:10:53 +02:00
|
|
|
#' ERL_OPTIONS: Additional Erlang options
|
|
|
|
#
|
|
|
|
# The next variable allows to specify additional options passed to erlang while
|
|
|
|
# starting ejabberd. Some useful options are -noshell, -detached, -heart. When
|
|
|
|
# ejabberd is started from an init.d script options -noshell and -detached are
|
|
|
|
# added implicitly. See erl(1) for more info.
|
|
|
|
#
|
|
|
|
# It might be useful to add "-pa /usr/local/lib/ejabberd/ebin" if you
|
|
|
|
# want to add local modules in this path.
|
|
|
|
#
|
|
|
|
# Default: ""
|
|
|
|
#
|
|
|
|
#ERL_OPTIONS=""
|
|
|
|
|
|
|
|
#.
|
|
|
|
#' ERLANG_NODE: Erlang node name
|
|
|
|
#
|
2007-10-17 04:33:19 +02:00
|
|
|
# The next variable allows to explicitly specify erlang node for ejabberd
|
|
|
|
# It can be given in different formats:
|
|
|
|
# ERLANG_NODE=ejabberd
|
2007-12-02 22:13:25 +01:00
|
|
|
# Lets erlang add hostname to the node (ejabberd uses short name in this case)
|
2007-10-17 04:33:19 +02:00
|
|
|
# ERLANG_NODE=ejabberd@hostname
|
2007-12-02 22:13:25 +01:00
|
|
|
# Erlang uses node name as is (so make sure that hostname is a real
|
|
|
|
# machine hostname or you'll not be able to control ejabberd)
|
2007-10-17 04:33:19 +02:00
|
|
|
# ERLANG_NODE=ejabberd@hostname.domainname
|
2009-04-22 15:45:57 +02:00
|
|
|
# The same as previous, but erlang will use long hostname
|
2007-12-02 22:13:25 +01:00
|
|
|
# (see erl (1) manual for details)
|
2007-10-17 04:33:19 +02:00
|
|
|
#
|
2011-06-28 00:31:13 +02:00
|
|
|
# Default: ejabberd@localhost
|
2008-01-01 11:53:05 +01:00
|
|
|
#
|
2011-06-28 00:31:13 +02:00
|
|
|
#ERLANG_NODE=ejabberd@localhost
|
2009-04-22 15:45:57 +02:00
|
|
|
|
2009-08-24 23:21:04 +02:00
|
|
|
#.
|
|
|
|
#' EJABBERD_PID_PATH: ejabberd PID file
|
|
|
|
#
|
|
|
|
# Indicate the full path to the ejabberd Process identifier (PID) file.
|
|
|
|
# If this variable is defined, ejabberd writes the PID file when starts,
|
|
|
|
# and deletes it when stops.
|
|
|
|
# Remember to create the directory and grant write permission to ejabberd.
|
|
|
|
#
|
|
|
|
# Default: don't write PID file
|
|
|
|
#
|
|
|
|
#EJABBERD_PID_PATH=/var/run/ejabberd/ejabberd.pid
|
|
|
|
|
2009-05-16 00:10:53 +02:00
|
|
|
#.
|
|
|
|
#'
|
2009-04-22 15:45:57 +02:00
|
|
|
# vim: foldmarker=#',#. foldmethod=marker:
|