MyNixOS website logo
option

services.prosody.virtualHosts

Define the virtual hosts.

Declarations
Type
attribute set of (submodule)
Default
{
  localhost = {
    domain = "localhost";
    enabled = true;
  };
}
Example
{
  myhost = {
    domain = "my-xmpp-example-host.org";
    enabled = true;
  };
}