summaryrefslogtreecommitdiff
path: root/ejabberd.yml.example (follow)
Commit message (Collapse)AuthorAgeFilesLines
* New listener for encrypted ejabberd_c2sMarek2021-02-021-0/+9
| | | Add a new listener on port 5223 for the TLS-enabled ejabberd_c2s, which combined with proper SRV records allows passing the XEP-0368 compliance test.
* Fix YAML syntax in example configuration (#3301)Badlop2020-06-251-4/+4
|
* Update example config to include mod_http_upload custom headers (#3288)Badlop2020-06-091-0/+4
|
* Update example configLicaon_Kter2020-06-031-2/+2
|
* ejabberd_stun: Support IPv6 for TURNHolger Weiss2020-05-191-1/+3
| | | | | The stun application now supports RFC 6156: TURN Extension for IPv6, and therefore needs separate IPv4 and IPv6 relay addresses.
* Let ejabberd_stun listen on IPv6 socketsHolger Weiss2020-05-191-0/+1
| | | | | The stun application now allows IPv6 clients to perform STUN requests and to allocate TURN relays.
* Increase default shaper limits, to help with jingle initiation delayPaweł Chmielowski2020-05-151-2/+4
| | | | More discussion about this can be found in pull request 3255
* Merge pull request #3232 from weiss/enable-stunJérôme Sautret2020-04-291-0/+7
|\ | | | | Enable STUN/TURN support by default
| * Enable STUN/TURN by defaultHolger Weiss2020-04-201-0/+7
| | | | | | | | | | Build ejabberd with STUN/TURN support by default, and add a STUN/TURN listener to the example configuration file.
* | Support XEP-0215: External Service DiscoveryHolger Weiss2020-04-281-0/+1
|/ | | | | | | | | | | | | Add the 'mod_stun_disco' module, which allows XMPP clients to discover STUN/TURN services and to obtain temporary credentials for using them as per XEP-0215: External Service Discovery. The temporary credentials handed out to clients have the format described in: https://tools.ietf.org/html/draft-uberti-behave-turn-rest-00 Also add the new module to the example configuration file. Closes #2947.
* Replace lager with built-in new logging APIEvgeny Khramtsov2019-10-181-5/+1
| | | | | | | | | | | | | | | 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.
* Avoid excessive quoting in request_handlers of example configEvgeny Khramtsov2019-09-211-8/+8
|
* Comment `certfiles` section in example configEvgeny Khramtsov2019-09-201-3/+4
| | | | Rely on ACME configuration instead
* Add listener for ACME challenge in example configEvgeny Khramtsov2019-09-201-0/+1
|
* Use new configuration validatorEvgeny Khramtsov2019-06-141-46/+34
|
* Change indentation in ejabberd.yml.example to more consistantPaweł Chmielowski2019-06-041-3/+3
|
* Remove 'register' access rule from example configHolger Weiss2019-05-201-2/+0
| | | | | The 'register' access rule isn't referenced from the 'mod_register' options, so modifying it would have no effect.
* Deprecate some listening optionsEvgeny Khramtsov2019-04-301-4/+5
| | | | | | | | | | | | | | | | Those are: captcha, register, web_admin, http_bind and xmlrpc The option `request_handlers` should be used instead, e.g.: listen: ... - module: ejabberd_http request_handlers: "/admin": ejabberd_web_admin "/bosh": mod_bosh "/captcha": ejabberd_captcha "/register": mod_register_web "/": ejabberd_xmlrpc
* Remove TLS options from the example configEvgeny Khramtsov2019-04-281-20/+0
| | | | | | | | | The purpose is two-fold: - To simplify the example config. - To avoid old TLS configuration to be persistent across server updates: this might bring security problems, because what's considered "modern" now might be insecure in the future.
* Remove OMEMO related configuration from force_node_config sectionEvgeny Khramtsov2019-04-281-4/+0
| | | | This doesn't work reliably and takes a lot of effort to change it back
* Add MQTT listener and module in example configChristophe Romain2019-02-261-0/+6
|
* add acl for mam in mod_mucChristoph Scholz2019-01-041-0/+2
|
* Add HTTP listener on port 5280 for admin web interfaceEvgeny Khramtsov2018-12-131-0/+5
|
* Fix a pair of small typosBadlop2018-12-121-1/+1
|
* Change default ciphers to intermediatePaweł Chmielowski2018-12-071-5/+6
|
* Define default ciphers/protocol_option in example configPaweł Chmielowski2018-12-071-1/+19
|
* Config template recommend "open" access_modelLicaon_Kter2018-10-151-1/+1
| | | ...instead of "comment out", as many seem to misunderstand what and why should be or not be commented out
* Enable mod_proxy65 by defaultHolger Weiss2018-10-151-0/+3
|
* Avoid using * in 'certfiles' option of default configEvgeny Khramtsov2018-10-041-1/+2
|
* Increase 'max_stanza_size' limit for c2s listenerHolger Weiss2018-09-171-1/+1
| | | | | | Specify a larger 'max_stanza_size' limit for c2s connections in the default configuration in order to reduce the risk of this limit being hit by legitimate traffic (such as avatar uploads).
* Set a 'max_stanza_size' for incoming s2s listenerHolger Weiss2018-09-161-0/+1
| | | | | | Specify a 'max_stanza_size' limit for incoming s2s connections in the example configuration, but use a relatively large value in order to minimize the risk of this limit being hit by legitimate traffic.
* Enable TLS by default (and require it for c2s)Holger Weiss2018-07-181-2/+6
|
* Remove vcard search default valueLicaon_Kter2018-07-081-2/+1
|
* Remove stats and time from templateLicaon_Kter2018-07-061-2/+0
| | | Are these important for a new admin?
* Merge branch 'master' of github.com:processone/ejabberdEvgeniy Khramtsov2018-07-021-1/+1
|\
| * Default config example fix reversed textLicaon_Kter2018-07-011-1/+1
| | | | | | ...in enable OMEMO
* | Enable Roster Versioning in the default config fileEvgeniy Khramtsov2018-07-021-1/+2
|/
* Simplify the default configuration fileEvgeniy Khramtsov2018-07-011-721/+63
| | | | | | | | | | | | | | | After some discussion with the community it was decided to clean the configuration file from excessive comments and explicitly configured default values. Also, mod_mam and mod_http_upload have been added. The rationale for this is to have a clean and not bloated configuration file which doesn't scare away newcomers and which has all features from the Compliance Suite 2018 (XEP-0387) enabled by default. For further configuration an admin is encouraged to read the documentation at https://docs.ejabberd.im/admin/configuration
* Move mod_irc to ejabberd-contribEvgeniy Khramtsov2018-06-201-1/+0
|
* OMEMO enable HOWTO addedimShara2018-06-061-1/+2
| | | Depend on #2425
* Add default_db in the example configLicaon_Kter2018-05-281-0/+8
| | | I only found it in the docs after setting up per module db_
* Option watchdog_admins has no effect anymoreEvgeniy Khramtsov2018-05-081-8/+0
|
* config: move section about direct-tls for c2s just under regular c2s config ↵Romain DEP.2018-03-281-14/+14
| | | | (to ease parameters comparison)
* Clarify the statement about mod_http_upload thumbnailsEvgeniy Khramtsov2018-03-231-1/+1
|
* Force node config for bookmarksEvgeniy Khramtsov2018-03-231-2/+5
|
* Move force_node_config defaults into ejabberd.yml.exampleEvgeniy Khramtsov2018-03-231-0/+5
|
* Add 'new_sql_schema' config option, --enable-new-sql-schema now sets its ↵Alexey Shchepin2018-03-151-0/+5
| | | | default value to true (#2239)
* Add mod_fail2ban to the example configEvgeniy Khramtsov2018-03-101-0/+1
|
* Always build eimp dependencyEvgeniy Khramtsov2018-01-151-4/+1
| | | | | | Even if no suitable C graphics libraries are detected at compile time, the package is still usable because it provides `eimp:get_type/1` which is used by mod_avatar.
* Fix example config macro namesLicaon_Kter2018-01-131-3/+3
| | | These were missed in https://github.com/processone/ejabberd/commit/c26b56679e06ef8b88734030de11c6b885f9bb78#diff-19e0c10699732f76181f70cfbec95d38 I guess.