prosody.cfg.lua.dist: Improve section-like layout via headers and spacing

This commit is contained in:
Matthew Wild 2022-02-14 16:27:58 +00:00
parent fde42d8486
commit 25cb355e10

View file

@ -105,6 +105,7 @@ modules_disabled = {
-- For more information see https://prosody.im/doc/creating_accounts -- For more information see https://prosody.im/doc/creating_accounts
allow_registration = false allow_registration = false
-- Server-to-server authentication
-- Require valid certificates for server-to-server connections? -- Require valid certificates for server-to-server connections?
-- If false, other methods such as dialback (DNS) may be used instead. -- If false, other methods such as dialback (DNS) may be used instead.
@ -122,6 +123,8 @@ s2s_secure_auth = true
--s2s_secure_domains = { "jabber.org" } --s2s_secure_domains = { "jabber.org" }
-- Rate limits
-- Enable rate limits for incoming client and server connections. These help -- Enable rate limits for incoming client and server connections. These help
-- protect from excessive resource consumption and denial-of-service attacks. -- protect from excessive resource consumption and denial-of-service attacks.
@ -134,11 +137,14 @@ limits = {
}; };
} }
-- Authentication
-- Select the authentication backend to use. The 'internal' providers -- Select the authentication backend to use. The 'internal' providers
-- use Prosody's configured data storage to store the authentication data. -- use Prosody's configured data storage to store the authentication data.
authentication = "internal_hashed" authentication = "internal_hashed"
-- Storage
-- Select the storage backend to use. By default Prosody uses flat files -- Select the storage backend to use. By default Prosody uses flat files
-- in its configured data directory, but it also supports more backends -- in its configured data directory, but it also supports more backends
-- through modules. An "sql" backend is included by default, but requires -- through modules. An "sql" backend is included by default, but requires
@ -174,6 +180,7 @@ archive_expires_after = "1w" -- Remove archived messages after 1 week
--turn_external_host = "turn.example.com" --turn_external_host = "turn.example.com"
--turn_external_secret = "your-secret-turn-access-token" --turn_external_secret = "your-secret-turn-access-token"
-- Logging configuration -- Logging configuration
-- For advanced logging see https://prosody.im/doc/logging -- For advanced logging see https://prosody.im/doc/logging
log = { log = {
@ -183,10 +190,12 @@ log = {
-- "*console"; -- Log to the console, useful for debugging when running in the foreground -- "*console"; -- Log to the console, useful for debugging when running in the foreground
} }
-- Uncomment to enable statistics -- Uncomment to enable statistics
-- For more info see https://prosody.im/doc/statistics -- For more info see https://prosody.im/doc/statistics
-- statistics = "internal" -- statistics = "internal"
-- Certificates -- Certificates
-- Every virtual host and component needs a certificate so that clients and -- Every virtual host and component needs a certificate so that clients and
-- servers can securely verify its identity. Prosody will automatically load -- servers can securely verify its identity. Prosody will automatically load