Files

251 lines
5.3 KiB
YAML
Raw Permalink Normal View History

2013-08-12 22:25:05 +10:00
###
2018-07-01 23:57:27 +03:00
### ejabberd configuration file
2013-08-12 22:25:05 +10:00
###
2018-07-01 23:57:27 +03:00
### The parameters used in this configuration file are explained at
###
### https://docs.ejabberd.im/admin/configuration
2013-08-12 22:25:05 +10:00
###
### The configuration file is written in YAML.
2018-07-01 23:57:27 +03:00
### *******************************************************
### ******* !!! WARNING !!! *******
### ******* YAML IS INDENTATION SENSITIVE *******
### ******* MAKE SURE YOU INDENT SECTIONS CORRECTLY *******
### *******************************************************
2013-08-12 22:25:05 +10:00
### Refer to http://en.wikipedia.org/wiki/YAML for the brief description.
2018-07-01 23:57:27 +03:00
###
2013-08-12 22:25:05 +10:00
2018-07-01 23:57:27 +03:00
hosts:
2019-06-14 12:33:26 +03:00
- localhost
2013-08-12 22:25:05 +10:00
2019-10-18 19:12:32 +03:00
loglevel: info
2019-09-20 16:12:15 +03: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 22:25:05 +10:00
listen:
-
2013-08-12 22:25:05 +10:00
port: 5222
ip: "::"
2013-08-12 22:25:05 +10:00
module: ejabberd_c2s
max_stanza_size: 262144
2013-08-12 22:25:05 +10:00
shaper: c2s_shaper
access: c2s
starttls_required: true
2021-02-02 15:25:19 +01:00
-
port: 5223
ip: "::"
module: ejabberd_c2s
max_stanza_size: 262144
shaper: c2s_shaper
access: c2s
tls: true
-
2013-08-12 22:25:05 +10:00
port: 5269
ip: "::"
2013-08-12 22:25:05 +10:00
module: ejabberd_s2s_in
max_stanza_size: 524288
2023-10-16 14:44:01 +02:00
shaper: s2s_shaper
-
port: 5443
ip: "::"
module: ejabberd_http
2019-04-30 11:14:14 +03:00
tls: true
request_handlers:
/admin: ejabberd_web_admin
/api: mod_http_api
/bosh: mod_bosh
/captcha: ejabberd_captcha
/upload: mod_http_upload
/ws: ejabberd_http_ws
-
port: 5280
ip: "::"
module: ejabberd_http
2019-04-30 11:14:14 +03:00
request_handlers:
/admin: ejabberd_web_admin
/.well-known/acme-challenge: ejabberd_acme
2020-04-20 00:37:41 +02:00
-
port: 5478
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 07:19:02 +00: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 07:19:02 +00:00
# turn_ipv6_address: "2001:db8::3"
-
port: 1883
ip: "::"
module: mod_mqtt
backlog: 1000
s2s_use_starttls: optional
2013-08-12 22:25:05 +10:00
acl:
local:
user_regexp: ""
2013-08-12 22:25:05 +10:00
loopback:
ip:
2019-06-14 12:33:26 +03:00
- 127.0.0.0/8
- ::1/128
2013-08-12 22:25:05 +10:00
access_rules:
local:
2019-06-14 12:33:26 +03:00
allow: local
c2s:
2019-06-14 12:33:26 +03:00
deny: blocked
allow: all
announce:
2019-06-14 12:33:26 +03:00
allow: admin
configure:
2019-06-14 12:33:26 +03:00
allow: admin
muc_create:
2019-06-14 12:33:26 +03:00
allow: local
pubsub_createnode:
2019-06-14 12:33:26 +03:00
allow: local
trusted_network:
2019-06-14 12:33:26 +03:00
allow: loopback
2013-08-12 22:25:05 +10:00
api_permissions:
"console commands":
from: ejabberd_ctl
who: all
what: "*"
"webadmin commands":
from: ejabberd_web_admin
who: admin
what: "*"
"adhoc commands":
from: mod_adhoc_api
who: admin
what: "*"
"http access":
from: mod_http_api
who:
2019-06-14 12:33:26 +03:00
access:
allow:
- acl: loopback
- acl: admin
2019-06-14 12:33:26 +03:00
oauth:
scope: "ejabberd:admin"
access:
allow:
- acl: loopback
- acl: admin
what:
- "*"
- "!stop"
- "!start"
"public commands":
who:
2019-06-14 12:33:26 +03:00
ip: 127.0.0.1/8
what:
2019-06-14 12:33:26 +03:00
- status
- connected_users_number
2018-07-01 23:57:27 +03:00
shaper:
normal:
rate: 3000
burst_size: 20000
fast: 100000
2017-11-11 15:38:47 +02:00
2018-07-01 23:57:27 +03:00
shaper_rules:
max_user_sessions: 10
max_user_offline_messages:
2019-06-14 12:33:26 +03:00
5000: admin
100: all
2018-07-01 23:57:27 +03:00
c2s_shaper:
2019-06-14 12:33:26 +03:00
none: admin
normal: all
2018-07-01 23:57:27 +03:00
s2s_shaper: fast
2013-08-12 22:25:05 +10:00
modules:
2013-08-12 22:25:05 +10:00
mod_adhoc: {}
mod_adhoc_api: {}
mod_admin_extra: {}
2018-07-01 23:57:27 +03:00
mod_announce:
2013-08-12 22:25:05 +10:00
access: announce
2018-07-01 23:57:27 +03:00
mod_avatar: {}
mod_blocking: {}
mod_bosh: {}
2013-08-12 22:25:05 +10:00
mod_caps: {}
mod_carboncopy: {}
mod_client_state: {}
2018-07-01 23:57:27 +03:00
mod_configure: {}
2013-08-12 22:25:05 +10:00
mod_disco: {}
2018-07-01 23:57:27 +03:00
mod_fail2ban: {}
mod_http_api: {}
mod_http_upload:
put_url: https://@HOST_URL_ENCODE@:5443/upload
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 22:25:05 +10:00
mod_last: {}
2018-07-01 23:57:27 +03: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
mod_mqtt: {}
mod_muc:
2016-06-24 15:12:58 +02:00
access:
- allow
access_admin:
- allow: admin
2013-08-12 22:25:05 +10:00
access_create: muc_create
access_persistent: muc_create
2019-01-02 17:35:01 +01:00
access_mam:
- allow
2018-07-01 23:57:27 +03:00
default_room_options:
mam: true
mod_muc_admin: {}
mod_offline:
2013-08-12 22:25:05 +10: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
mod_pubsub:
2013-08-12 22:25:05 +10:00
access_createnode: pubsub_createnode
plugins:
2019-06-14 12:33:26 +03:00
- flat
- pep
force_node_config:
2018-03-23 16:16:27 +03:00
## Avoid buggy clients to make their bookmarks public
2019-06-14 12:33:26 +03:00
storage:bookmarks:
2018-03-23 16:16:27 +03: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 23:57:27 +03: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
mod_roster:
versioning: true
mod_s2s_bidi: {}
2018-07-01 23:57:27 +03:00
mod_s2s_dialback: {}
2013-08-12 22:25:05 +10:00
mod_shared_roster: {}
2018-07-01 23:57:27 +03:00
mod_stream_mgmt:
resend_on_timeout: if_offline
mod_stun_disco: {}
2018-07-08 23:48:08 +00:00
mod_vcard: {}
2017-09-25 16:23:02 +03:00
mod_vcard_xupdate: {}
2018-07-01 23:57:27 +03:00
mod_version:
show_os: false
2013-08-12 22:25:05 +10:00
### Local Variables:
### mode: yaml
### End:
2018-07-01 23:57:27 +03:00
### vim: set filetype=yaml tabstop=8