Skip to content

Instantly share code, notes, and snippets.

@rohan-molloy
Created August 13, 2019 06:36
Show Gist options
  • Save rohan-molloy/6b0aea6edd33341ed38284c78bab7c42 to your computer and use it in GitHub Desktop.
Save rohan-molloy/6b0aea6edd33341ed38284c78bab7c42 to your computer and use it in GitHub Desktop.
A clean config for prosody xmpp server
admins = {}
modules_enabled = {
"roster"; "saslauth"; "tls"; "private"; "vcard"; "uptime"; "time"; "ping"; "pep"; "admin_adhoc";"posix"; "mod_log_auth"; "disco";
};
modules_disabled = {
"offline"; "s2s";
};
allow_registration = false;
daemonize = true;
pidfile = "/var/run/prosody/prosody.pid";
c2s_require_encryption = enable
s2s_secure_auth = enable
authentication = "internal_hashed"
log = {
info = "/var/log/prosody/prosody.log";
error = "/var/log/prosody/prosody.err";
{ levels = { "error" }; to = "syslog"; };
}
VirtualHost "example.etherarp.net"
enabled = true
admins = {
"[email protected]"
}
ssl = {
key = "/etc/prosody/privkey.pem";
certificate = "/etc/prosody/cert.pem";
cafile = "/etc/prosody/chain.pem";
dhparam = "/etc/prosody/dh2048.pem";
protocol = "tlsv1_2";
ciphers = "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH";
curve = "secp384r1";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment