aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-09-20 13:21:07 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-09-20 13:21:07 +0000
commit472e7b796cfeb1445ee1572df414531655b050ce (patch)
tree45656a41d0c67208f15a94f62cf211ecc5fa4de4
parentc4da7499a3d7b0f5086c1180131df4e35b5b0d15 (diff)
parentdf3feb9412f1a6b9962aa5ad4a45e73aabc486d7 (diff)
downloadpleroma-472e7b796cfeb1445ee1572df414531655b050ce.tar.gz
Merge branch 'config/update-mongoose' into 'develop'
Make it obvious how to support dual stack for MongooseIM See merge request pleroma/pleroma!1702
-rwxr-xr-xinstallation/pleroma-mongooseim.cfg8
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"]}