holgersson-overlay/net-im/dendrite/files/dendrite.confd

28 lines
1.1 KiB
Plaintext
Raw Normal View History

# Increase the maximum number of open file descriptors. Set to a higher
# value for larger servers or if joining larger rooms.
rc_ulimit="-n 4096"
# Specify the network service that corresponds to the "bind" setting
# in your configuration file. For example, if you bind to 127.0.0.1,
# this should be set to "loopback" which provides the loopback interface.
rc_need="loopback"
# Dendrite mode. Either "monolith" or "polylith".
DENDRITE_MODE="monolith"
# If your configuration of dendrite uses locally running PostgreSQL
# you may want to uncomment the next line
# rc_need="${rc_need} postgresql"
# If your configuration of dendrite uses locally running kafka
# you may want to uncomment the next line
# rc_need="${rc_need} kafka"
# If you use nginx as a reverse proxy for your dendrite
# you may want to uncomment the next line
# rc_need="${rc_need} nginx"
# Additional command-line options. These can be used to set the bind address and port of the monolith server,
# among other things. See `dendrite-monolith-server -help` or `dendrite-polylith-multi -help` for a full list.
# DENDRITE_OPTS="-http-bind-address localhost:8008"