Hello! I'm setting up a very small Jabber server; it should not hold any accounts except one admin and serve just as a conference server for a small group of users. After some fiddling with the configuration, I get the impression that one must choose a different "host" for mod_muc than for the rest of the Jabber server. That is, if my one admin user is
In the
Is my understanding correct? I would have liked to just use one host name, but if one needs two, no problem.
why can't u create a CNAME
why can't u create a CNAME record in dns for conference.myserver.net to point to mysever.net?
That's analogous to what I
That's analogous to what I did; I created two DNS entries with the same IP address in the A record.
It boils down to the same thing: I have to configure two domain names.
cato_minor wrote: one must
one must choose a different "host" for mod_muc than for the rest of the Jabber server. That is, if my one admin user isadmin@myserver.net , I must not call the mod_muc host "myserver.net", but for example "conference.myserver.net".
there must be a "real host name", configured in the DNS, behind that?
Right. The typical example configuration is:
Notice that this is also possible:
That strange configuration works for me in my local machine. I never tried it over Internet, with DNS setups, etc.
I succeeded with something
I succeeded with something analogue to your second, "strange" configuration:
{hosts, ["users.chat.myserver.net"]}.
{modules, ]
{mod_muc, [
{host, "chat.myserver.net"},
...
]},
...
]}.
Works fine with real DNS addresses :-)