# HG changeset patch # User Matthew Wild # Date 1262316552 0 # Node ID 00121b728a02c0e61a9904e54ef952e5f9265421 # Parent 2c416334579c48825575713d6f45724145bdc622 prosody.cfg.lua.dist: Remove trailing whitespace diff -r 2c416334579c -r 00121b728a02 prosody.cfg.lua.dist --- a/prosody.cfg.lua.dist Thu Dec 31 02:39:40 2009 +0000 +++ b/prosody.cfg.lua.dist Fri Jan 01 03:29:12 2010 +0000 @@ -1,38 +1,38 @@ --- Prosody Example Configuration File +-- Prosody Example Configuration File -- --- If it wasn't already obvious, -- starts a comment, and all +-- If it wasn't already obvious, -- starts a comment, and all -- text after it on a line is ignored by Prosody. -- --- The config is split into sections, a global section, and one --- for each defined host that we serve. You can add as many host +-- The config is split into sections, a global section, and one +-- for each defined host that we serve. You can add as many host -- sections as you like. -- --- Lists are written { "like", "this", "one" } --- Lists can also be of { 1, 2, 3 } numbers, and other things. +-- Lists are written { "like", "this", "one" } +-- Lists can also be of { 1, 2, 3 } numbers, and other things. -- Either commas, or semi-colons; may be used -- as seperators. -- --- A table is a list of values, except each value has a name. An +-- A table is a list of values, except each value has a name. An -- example table would be: -- -- ssl = { key = "keyfile.key", certificate = "certificate.cert" } -- --- Whitespace (that is tabs, spaces, line breaks) is mostly insignificant, so --- can +-- Whitespace (that is tabs, spaces, line breaks) is mostly insignificant, so +-- can -- be placed anywhere that you deem fitting. -- -- Tip: You can check that the syntax of this file is correct when you have finished -- by running: luac -p prosody.cfg.lua --- If there are any errors, it will let you know what and where they are, otherwise it +-- If there are any errors, it will let you know what and where they are, otherwise it -- will keep quiet. -- --- The only thing left to do is rename this file to remove the .dist ending, and fill in the +-- The only thing left to do is rename this file to remove the .dist ending, and fill in the -- blanks. Good luck, and happy Jabbering! -- Server-wide settings go in this section Host "*" - -- This is a (by default, empty) list of accounts that are admins + -- This is a (by default, empty) list of accounts that are admins -- for the server. Note that you must create the accounts separately -- (see http://prosody.im/doc/creating_accounts for info) -- Example: admins = { "user1@example.com", "user2@example.net" } @@ -83,7 +83,7 @@ -- These are the SSL/TLS-related settings. If you don't want -- to use SSL/TLS, you may comment or remove this - ssl = { + ssl = { key = "certs/localhost.key"; certificate = "certs/localhost.cert"; } @@ -101,7 +101,7 @@ -- set in the global section (if any). -- Note that old-style SSL on port 5223 only supports one certificate, and will always -- use the global one. - ssl = { + ssl = { key = "certs/example.com.key"; certificate = "certs/example.com.crt"; }