diff options
author | Maxim Filippov <colixer@gmail.com> | 2019-09-22 16:58:39 +0300 |
---|---|---|
committer | Maxim Filippov <colixer@gmail.com> | 2019-09-22 16:58:39 +0300 |
commit | 02bbcd6180702828b08a37ccf214cc3b7d5ebd24 (patch) | |
tree | 73ce407b898050eeb08352ca1e8368918d1ba2bc /installation | |
parent | f89fe3ac06505cc07372fcdefdc3fde72d1f04a0 (diff) | |
parent | 472e7b796cfeb1445ee1572df414531655b050ce (diff) | |
download | pleroma-02bbcd6180702828b08a37ccf214cc3b7d5ebd24.tar.gz pleroma-02bbcd6180702828b08a37ccf214cc3b7d5ebd24.zip |
Merge branch 'develop' into feature/return-link-for-password-reset
Diffstat (limited to 'installation')
-rwxr-xr-x | installation/pleroma-mongooseim.cfg | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/installation/pleroma-mongooseim.cfg b/installation/pleroma-mongooseim.cfg index d7567321f..576f83541 100755 --- a/installation/pleroma-mongooseim.cfg +++ b/installation/pleroma-mongooseim.cfg @@ -215,7 +215,9 @@ ]} ]}, - { 5222, ejabberd_c2s, [ + %% If you want dual stack, you have to clone this entire config stanza + %% and change the bind to "::" + { {5222, "0.0.0.0"}, ejabberd_c2s, [ %% %% If TLS is compiled in and you installed a SSL @@ -246,7 +248,9 @@ %% {max_stanza_size, 65536} %% ]}, - { 5269, ejabberd_s2s_in, [ + %% If you want dual stack, you have to clone this entire config stanza + %% and change the bind to "::" + { {5269, "0.0.0.0"}, ejabberd_s2s_in, [ {shaper, s2s_shaper}, {max_stanza_size, 131072}, {protocol_options, ["no_sslv3"]} |