rabbitmq-server/rabbitmq-server.sysconfig

76 lines
1.9 KiB
Plaintext

## Type: integer
## Default: 1
#
# Defines how many rabbitmq nodes to start
#
NODE_COUNT="1"
## Type: string
## Default: ""
#
# Defines the suffix for logrotate
#
ROTATE_SUFFIX=""
## Type: string
## Default: "/var/log/rabbitmq"
#
# Defines the location of the log files
#
INIT_LOG_DIR="/var/log/rabbitmq"
## Type: string
## Default: "/var/lib/rabbitmq/mnesia"
#
# Set this to the directory where Mnesia database files should be placed.
#
RABBITMQ_MNESIA_BASE="/var/lib/rabbitmq/mnesia"
## Type: string
## Default: "/var/log/rabbitmq"
#
# Log files generated by the server will be placed in this directory.
#
RABBITMQ_LOG_BASE="/var/log/rabbitmq"
## Type: string
## Default: "rabbit"
#
# This can be useful if you want to run more than one node per machine -
# RABBITMQ_NODENAME should be unique per erlang-node-and-machine
# combination. See clustering on a single machine for more.
#
RABBITMQ_NODENAME="rabbit"
## Type: string
## Default: "0.0.0.0"
#
# This can be changed if you only want to bind to one network interface.
#
RABBITMQ_NODE_IP_ADDRESS="0.0.0.0"
## Type: integer
## Default: 5672
#
# This can be changed if you want to listen on a non-standard port.
#
RABBITMQ_NODE_PORT="5672"
## Type: string
## Default: "/etc/rabbitmq/rabbitmq_cluster.config"
#
# If this file is present it is used by the server to auto-configure a
# RabbitMQ cluster. See the clustering guide for details.
#
RABBITMQ_CLUSTER_CONFIG_FILE="/etc/rabbitmq/rabbitmq_cluster.config"
## Type: string
## Default: "/etc/rabbitmq/rabbitmq"
#
# If this file is present it is used by the server to configure RabbitMQ
# application components. Note that the .config extension is automatically
# appended by the Erlang runtime. See the section on the configuration file
# for details.
#
RABBITMQ_CONFIG_FILE="/etc/rabbitmq/rabbitmq"