Software /
code /
prosody
Comparison
prosody.cfg.lua.dist @ 11572:e06dba5e99b9
prosody.cfg.lua.dist: Fix indentation to use tabs like the rest of the file
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Wed, 19 May 2021 23:39:56 +0200 |
parent | 11560:3bbb1af92514 |
child | 11581:7e111f7147dc |
comparison
equal
deleted
inserted
replaced
11571:a8f0f87e115a | 11572:e06dba5e99b9 |
---|---|
126 --s2s_secure_domains = { "jabber.org" } | 126 --s2s_secure_domains = { "jabber.org" } |
127 | 127 |
128 -- Enable rate limits for incoming client and server connections | 128 -- Enable rate limits for incoming client and server connections |
129 | 129 |
130 limits = { | 130 limits = { |
131 c2s = { | 131 c2s = { |
132 rate = "10kb/s"; | 132 rate = "10kb/s"; |
133 }; | 133 }; |
134 s2sin = { | 134 s2sin = { |
135 rate = "30kb/s"; | 135 rate = "30kb/s"; |
136 }; | 136 }; |
137 } | 137 } |
138 | 138 |
139 -- Select the authentication backend to use. The 'internal' providers | 139 -- Select the authentication backend to use. The 'internal' providers |
140 -- use Prosody's configured data storage to store the authentication data. | 140 -- use Prosody's configured data storage to store the authentication data. |
141 | 141 |