From 26c72e66f2b134aa8d547531417cd3f6c6a73f35 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 21 May 2013 12:58:57 +0100 Subject: prosody.cfg.lua.dist: Suggest 'prosodyctl check config' instead of 'luac -p' --- prosody.cfg.lua.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 23032932..3f440067 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -4,7 +4,7 @@ -- website at http://prosody.im/doc/configure -- -- Tip: You can check that the syntax of this file is correct --- when you have finished by running: luac -p prosody.cfg.lua +-- when you have finished by running: prosodyctl check config -- If there are any errors, it will let you know what and where -- they are, otherwise it will keep quiet. -- -- cgit v1.2.3 From 7b3aac0e5d17681af0956ac2c42e5ccaca612fd8 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 24 May 2013 13:55:28 +0100 Subject: prosody.cfg.lua.dist: Remove unnecessary ';' from default config (thanks Vincent) --- prosody.cfg.lua.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 3f440067..a662adcd 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -78,7 +78,7 @@ modules_disabled = { -- "offline"; -- Store offline messages -- "c2s"; -- Handle client connections -- "s2s"; -- Handle server-to-server connections -}; +} -- Disable account creation by default, for security -- For more information see http://prosody.im/doc/creating_accounts -- cgit v1.2.3 From d1920dc560eb1e71b59c9500fb0ad8dec81a3a3f Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Fri, 24 May 2013 13:59:59 +0100 Subject: prosody.cfg.lua: Remove some more sneaky ';' characters from the config --- prosody.cfg.lua.dist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index a662adcd..30221da9 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -24,7 +24,7 @@ admins = { } -- Enable use of libevent for better performance under high load -- For more information see: http://prosody.im/doc/libevent ---use_libevent = true; +--use_libevent = true -- This is the list of modules Prosody will load on startup. -- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. @@ -70,7 +70,7 @@ modules_enabled = { --"watchregistrations"; -- Alert admins of registrations --"motd"; -- Send a message to users when they log in --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. -}; +} -- These modules are auto-loaded, but should you want -- to disable them then uncomment them here: @@ -82,7 +82,7 @@ modules_disabled = { -- Disable account creation by default, for security -- For more information see http://prosody.im/doc/creating_accounts -allow_registration = false; +allow_registration = false -- These are the SSL/TLS-related settings. If you don't want -- to use SSL/TLS, you may comment or remove this -- cgit v1.2.3 From e6e0a05efa00c9fe22eca554c9dae23a361b182e Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Thu, 29 Aug 2013 11:59:27 +0100 Subject: prosody.cfg.lua.dist: Set c2s_require_encryption = true --- prosody.cfg.lua.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 30221da9..1d11a658 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -94,7 +94,7 @@ ssl = { -- Force clients to use encrypted connections? This option will -- prevent clients from authenticating unless they are using encryption. -c2s_require_encryption = false +c2s_require_encryption = true -- Force certificate authentication for server-to-server connections? -- This provides ideal security, but requires servers you communicate -- cgit v1.2.3 From 18f7ffec151b965af2745600f272db50a1c92ad2 Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Sat, 22 Mar 2014 14:53:17 +0100 Subject: prosody.cfg.lua.dist: mod_posix is enabled by default on posix platforms now --- prosody.cfg.lua.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prosody.cfg.lua.dist') diff --git a/prosody.cfg.lua.dist b/prosody.cfg.lua.dist index 1d11a658..ade219a8 100644 --- a/prosody.cfg.lua.dist +++ b/prosody.cfg.lua.dist @@ -63,7 +63,6 @@ modules_enabled = { --"http_files"; -- Serve static files from a directory over HTTP -- Other specific functionality - --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc. --"groups"; -- Shared roster support --"announce"; -- Send announcement to all online users --"welcome"; -- Welcome users who register accounts @@ -78,6 +77,7 @@ modules_disabled = { -- "offline"; -- Store offline messages -- "c2s"; -- Handle client connections -- "s2s"; -- Handle server-to-server connections + -- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc. } -- Disable account creation by default, for security -- cgit v1.2.3