2013-08-12 14:25:05 +02:00
|
|
|
###
|
2018-07-01 22:57:27 +02:00
|
|
|
### ejabberd configuration file
|
2013-08-12 14:25:05 +02:00
|
|
|
###
|
2018-07-01 22:57:27 +02:00
|
|
|
### The parameters used in this configuration file are explained at
|
|
|
|
###
|
|
|
|
### https://docs.ejabberd.im/admin/configuration
|
2013-08-12 14:25:05 +02:00
|
|
|
###
|
|
|
|
### The configuration file is written in YAML.
|
2018-07-01 22:57:27 +02:00
|
|
|
### *******************************************************
|
|
|
|
### ******* !!! WARNING !!! *******
|
|
|
|
### ******* YAML IS INDENTATION SENSITIVE *******
|
|
|
|
### ******* MAKE SURE YOU INDENT SECTIONS CORRECTLY *******
|
|
|
|
### *******************************************************
|
2013-08-12 14:25:05 +02:00
|
|
|
### Refer to http://en.wikipedia.org/wiki/YAML for the brief description.
|
2018-07-01 22:57:27 +02:00
|
|
|
###
|
2013-08-12 14:25:05 +02:00
|
|
|
|
2018-07-01 22:57:27 +02:00
|
|
|
hosts:
|
2019-06-14 11:33:26 +02:00
|
|
|
- localhost
|
2013-08-12 14:25:05 +02:00
|
|
|
|
Replace lager with built-in new logging API
This change requires Erlang/OTP-21.0 or higher.
The commit also deprecates the following options:
- log_rotate_date
- log_rate_limit
Furthermore, these options have no effect. The logger now fully
relies on log_rotate_size, that cannot be 0 anymore.
The loglevel option now accepts levels in literal formats.
Those are: none, emergency, alert, critical, error, warning, notice, info, debug.
Old integer values (0-5) are still supported and automatically converted
into literal format.
2019-10-18 18:12:32 +02:00
|
|
|
loglevel: info
|
2014-07-02 10:41:12 +02:00
|
|
|
|
2019-09-20 15:12:15 +02:00
|
|
|
## If you already have certificates, list them here
|
|
|
|
# certfiles:
|
|
|
|
# - /etc/letsencrypt/live/domain.tld/fullchain.pem
|
|
|
|
# - /etc/letsencrypt/live/domain.tld/privkey.pem
|
2013-08-12 14:25:05 +02:00
|
|
|
|
2017-09-30 11:10:34 +02:00
|
|
|
listen:
|
2017-09-30 11:12:20 +02:00
|
|
|
-
|
2013-08-12 14:25:05 +02:00
|
|
|
port: 5222
|
2017-04-07 11:02:11 +02:00
|
|
|
ip: "::"
|
2013-08-12 14:25:05 +02:00
|
|
|
module: ejabberd_c2s
|
2018-09-17 00:18:38 +02:00
|
|
|
max_stanza_size: 262144
|
2013-08-12 14:25:05 +02:00
|
|
|
shaper: c2s_shaper
|
|
|
|
access: c2s
|
2018-07-18 18:22:24 +02:00
|
|
|
starttls_required: true
|
2021-02-02 15:25:19 +01:00
|
|
|
-
|
|
|
|
port: 5223
|
|
|
|
ip: "::"
|
|
|
|
tls: true
|
|
|
|
module: ejabberd_c2s
|
|
|
|
max_stanza_size: 262144
|
|
|
|
shaper: c2s_shaper
|
|
|
|
access: c2s
|
|
|
|
starttls_required: true
|
2017-09-30 11:12:20 +02:00
|
|
|
-
|
2013-08-12 14:25:05 +02:00
|
|
|
port: 5269
|
2017-04-07 11:02:11 +02:00
|
|
|
ip: "::"
|
2013-08-12 14:25:05 +02:00
|
|
|
module: ejabberd_s2s_in
|
2018-09-16 23:57:44 +02:00
|
|
|
max_stanza_size: 524288
|
2017-09-30 11:12:20 +02:00
|
|
|
-
|
2018-07-18 18:22:24 +02:00
|
|
|
port: 5443
|
2017-04-07 11:02:11 +02:00
|
|
|
ip: "::"
|
|
|
|
module: ejabberd_http
|
2019-04-30 10:14:14 +02:00
|
|
|
tls: true
|
2017-04-07 11:02:11 +02:00
|
|
|
request_handlers:
|
2019-09-21 21:20:20 +02:00
|
|
|
/admin: ejabberd_web_admin
|
|
|
|
/api: mod_http_api
|
|
|
|
/bosh: mod_bosh
|
|
|
|
/captcha: ejabberd_captcha
|
|
|
|
/upload: mod_http_upload
|
|
|
|
/ws: ejabberd_http_ws
|
2018-12-13 10:06:29 +01:00
|
|
|
-
|
|
|
|
port: 5280
|
|
|
|
ip: "::"
|
|
|
|
module: ejabberd_http
|
2019-04-30 10:14:14 +02:00
|
|
|
request_handlers:
|
2019-09-21 21:20:20 +02:00
|
|
|
/admin: ejabberd_web_admin
|
|
|
|
/.well-known/acme-challenge: ejabberd_acme
|
2020-04-20 00:37:41 +02:00
|
|
|
-
|
|
|
|
port: 3478
|
2020-05-19 20:22:58 +02:00
|
|
|
ip: "::"
|
2020-04-20 00:37:41 +02:00
|
|
|
transport: udp
|
|
|
|
module: ejabberd_stun
|
|
|
|
use_turn: true
|
|
|
|
## The server's public IPv4 address:
|
2020-06-03 09:19:02 +02:00
|
|
|
# turn_ipv4_address: "203.0.113.3"
|
2020-05-19 21:42:41 +02:00
|
|
|
## The server's public IPv6 address:
|
2020-06-03 09:19:02 +02:00
|
|
|
# turn_ipv6_address: "2001:db8::3"
|
2019-02-26 14:53:05 +01:00
|
|
|
-
|
|
|
|
port: 1883
|
|
|
|
ip: "::"
|
|
|
|
module: mod_mqtt
|
|
|
|
backlog: 1000
|
2018-07-18 18:22:24 +02:00
|
|
|
|
|
|
|
s2s_use_starttls: optional
|
2018-01-12 08:27:33 +01:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
acl:
|
2017-09-30 11:10:34 +02:00
|
|
|
local:
|
2013-08-30 12:42:56 +02:00
|
|
|
user_regexp: ""
|
2013-08-12 14:25:05 +02:00
|
|
|
loopback:
|
|
|
|
ip:
|
2019-06-14 11:33:26 +02:00
|
|
|
- 127.0.0.0/8
|
|
|
|
- ::1/128
|
2013-08-12 14:25:05 +02:00
|
|
|
|
2016-05-26 10:37:00 +02:00
|
|
|
access_rules:
|
|
|
|
local:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: local
|
2016-05-26 10:37:00 +02:00
|
|
|
c2s:
|
2019-06-14 11:33:26 +02:00
|
|
|
deny: blocked
|
|
|
|
allow: all
|
2016-05-26 10:37:00 +02:00
|
|
|
announce:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: admin
|
2017-09-30 11:10:34 +02:00
|
|
|
configure:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: admin
|
2017-09-30 11:10:34 +02:00
|
|
|
muc_create:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: local
|
2017-09-30 11:10:34 +02:00
|
|
|
pubsub_createnode:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: local
|
2017-09-30 11:10:34 +02:00
|
|
|
trusted_network:
|
2019-06-14 11:33:26 +02:00
|
|
|
allow: loopback
|
2013-08-12 14:25:05 +02:00
|
|
|
|
2017-03-22 14:30:04 +01:00
|
|
|
api_permissions:
|
|
|
|
"console commands":
|
|
|
|
from:
|
|
|
|
- ejabberd_ctl
|
|
|
|
who: all
|
|
|
|
what: "*"
|
|
|
|
"admin access":
|
|
|
|
who:
|
2019-06-14 11:33:26 +02:00
|
|
|
access:
|
|
|
|
allow:
|
2020-06-25 12:00:42 +02:00
|
|
|
- acl: loopback
|
|
|
|
- acl: admin
|
2019-06-14 11:33:26 +02:00
|
|
|
oauth:
|
|
|
|
scope: "ejabberd:admin"
|
|
|
|
access:
|
|
|
|
allow:
|
2020-06-25 12:00:42 +02:00
|
|
|
- acl: loopback
|
|
|
|
- acl: admin
|
2017-03-22 14:30:04 +01:00
|
|
|
what:
|
|
|
|
- "*"
|
|
|
|
- "!stop"
|
|
|
|
- "!start"
|
|
|
|
"public commands":
|
|
|
|
who:
|
2019-06-14 11:33:26 +02:00
|
|
|
ip: 127.0.0.1/8
|
2017-03-22 14:30:04 +01:00
|
|
|
what:
|
2019-06-14 11:33:26 +02:00
|
|
|
- status
|
|
|
|
- connected_users_number
|
2017-01-13 16:53:48 +01:00
|
|
|
|
2018-07-01 22:57:27 +02:00
|
|
|
shaper:
|
2020-05-15 09:10:46 +02:00
|
|
|
normal:
|
|
|
|
rate: 3000
|
|
|
|
burst_size: 20000
|
|
|
|
fast: 100000
|
2017-11-11 14:38:47 +01:00
|
|
|
|
2018-07-01 22:57:27 +02:00
|
|
|
shaper_rules:
|
|
|
|
max_user_sessions: 10
|
|
|
|
max_user_offline_messages:
|
2019-06-14 11:33:26 +02:00
|
|
|
5000: admin
|
|
|
|
100: all
|
2018-07-01 22:57:27 +02:00
|
|
|
c2s_shaper:
|
2019-06-14 11:33:26 +02:00
|
|
|
none: admin
|
|
|
|
normal: all
|
2018-07-01 22:57:27 +02:00
|
|
|
s2s_shaper: fast
|
2013-08-12 14:25:05 +02:00
|
|
|
|
2017-09-30 11:10:34 +02:00
|
|
|
modules:
|
2013-08-12 14:25:05 +02:00
|
|
|
mod_adhoc: {}
|
2017-04-07 11:02:11 +02:00
|
|
|
mod_admin_extra: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_announce:
|
2013-08-12 14:25:05 +02:00
|
|
|
access: announce
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_avatar: {}
|
|
|
|
mod_blocking: {}
|
|
|
|
mod_bosh: {}
|
2013-08-12 14:25:05 +02:00
|
|
|
mod_caps: {}
|
2014-04-08 23:38:04 +02:00
|
|
|
mod_carboncopy: {}
|
2015-08-05 00:05:11 +02:00
|
|
|
mod_client_state: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_configure: {}
|
2013-08-12 14:25:05 +02:00
|
|
|
mod_disco: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_fail2ban: {}
|
|
|
|
mod_http_api: {}
|
|
|
|
mod_http_upload:
|
2019-06-14 11:33:26 +02:00
|
|
|
put_url: https://@HOST@:5443/upload
|
2020-06-09 13:02:45 +02:00
|
|
|
custom_headers:
|
|
|
|
"Access-Control-Allow-Origin": "https://@HOST@"
|
|
|
|
"Access-Control-Allow-Methods": "GET,HEAD,PUT,OPTIONS"
|
|
|
|
"Access-Control-Allow-Headers": "Content-Type"
|
2013-08-12 14:25:05 +02:00
|
|
|
mod_last: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_mam:
|
|
|
|
## Mnesia is limited to 2GB, better to use an SQL backend
|
|
|
|
## For small servers SQLite is a good fit and is very easy
|
|
|
|
## to configure. Uncomment this when you have SQL configured:
|
|
|
|
## db_type: sql
|
|
|
|
assume_mam_usage: true
|
|
|
|
default: always
|
2019-02-26 14:53:05 +01:00
|
|
|
mod_mqtt: {}
|
2017-09-30 11:10:34 +02:00
|
|
|
mod_muc:
|
2016-06-24 15:12:58 +02:00
|
|
|
access:
|
|
|
|
- allow
|
|
|
|
access_admin:
|
|
|
|
- allow: admin
|
2013-08-12 14:25:05 +02:00
|
|
|
access_create: muc_create
|
|
|
|
access_persistent: muc_create
|
2019-01-02 17:35:01 +01:00
|
|
|
access_mam:
|
|
|
|
- allow
|
2018-07-01 22:57:27 +02:00
|
|
|
default_room_options:
|
|
|
|
mam: true
|
2017-04-07 11:02:11 +02:00
|
|
|
mod_muc_admin: {}
|
2017-09-30 11:10:34 +02:00
|
|
|
mod_offline:
|
2013-08-12 14:25:05 +02:00
|
|
|
access_max_user_messages: max_user_offline_messages
|
|
|
|
mod_ping: {}
|
|
|
|
mod_privacy: {}
|
|
|
|
mod_private: {}
|
2018-10-15 23:09:52 +02:00
|
|
|
mod_proxy65:
|
|
|
|
access: local
|
|
|
|
max_connections: 5
|
2017-09-30 11:10:34 +02:00
|
|
|
mod_pubsub:
|
2013-08-12 14:25:05 +02:00
|
|
|
access_createnode: pubsub_createnode
|
2017-09-30 11:10:34 +02:00
|
|
|
plugins:
|
2019-06-14 11:33:26 +02:00
|
|
|
- flat
|
|
|
|
- pep
|
2018-03-23 14:08:12 +01:00
|
|
|
force_node_config:
|
2018-03-23 14:16:27 +01:00
|
|
|
## Avoid buggy clients to make their bookmarks public
|
2019-06-14 11:33:26 +02:00
|
|
|
storage:bookmarks:
|
2018-03-23 14:16:27 +01:00
|
|
|
access_model: whitelist
|
2017-07-20 20:22:50 +02:00
|
|
|
mod_push: {}
|
2017-07-21 01:07:36 +02:00
|
|
|
mod_push_keepalive: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_register:
|
|
|
|
## Only accept registration requests from the "trusted"
|
|
|
|
## network (see access_rules section above).
|
|
|
|
## Think twice before enabling registration from any
|
|
|
|
## address. See the Jabber SPAM Manifesto for details:
|
|
|
|
## https://github.com/ge0rg/jabber-spam-fighting-manifesto
|
|
|
|
ip_access: trusted_network
|
2018-07-02 00:08:02 +02:00
|
|
|
mod_roster:
|
|
|
|
versioning: true
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_s2s_dialback: {}
|
2013-08-12 14:25:05 +02:00
|
|
|
mod_shared_roster: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_stream_mgmt:
|
|
|
|
resend_on_timeout: if_offline
|
2020-04-24 00:45:24 +02:00
|
|
|
mod_stun_disco: {}
|
2018-07-09 01:48:08 +02:00
|
|
|
mod_vcard: {}
|
2017-09-25 15:23:02 +02:00
|
|
|
mod_vcard_xupdate: {}
|
2018-07-01 22:57:27 +02:00
|
|
|
mod_version:
|
|
|
|
show_os: false
|
2015-03-11 14:14:28 +01:00
|
|
|
|
2013-08-12 14:25:05 +02:00
|
|
|
### Local Variables:
|
|
|
|
### mode: yaml
|
|
|
|
### End:
|
2018-07-01 22:57:27 +02:00
|
|
|
### vim: set filetype=yaml tabstop=8
|