[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/18: services: messaging: Use HTTPS for prosody.im URLs.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/18: services: messaging: Use HTTPS for prosody.im URLs. |
Date: |
Sun, 24 Dec 2017 10:09:55 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 7459cb9305ff8ae7e72ca29aad0f8f8e1e807641
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Sun Dec 24 00:51:08 2017 +0100
services: messaging: Use HTTPS for prosody.im URLs.
* gnu/services/messaging.scm (prosody-configuration): Use HTTPS whenever
referring to prosody.im URLs in documentation.
* doc/guix.texi (Messaging Services): Likewise.
---
doc/guix.texi | 48 +++++++++++++++++++++++-----------------------
gnu/services/messaging.scm | 46 ++++++++++++++++++++++----------------------
2 files changed, 47 insertions(+), 47 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 8ecefa2..7572ab8 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -13956,7 +13956,7 @@ definitions for messaging services: currently only
Prosody is supported.
@subsubheading Prosody Service
@deffn {Scheme Variable} prosody-service-type
-This is the type for the @uref{http://prosody.im, Prosody XMPP
+This is the type for the @uref{https://prosody.im, Prosody XMPP
communication server}. Its value must be a @code{prosody-configuration}
record as in this example:
@@ -14021,13 +14021,13 @@ The Prosody package.
@deftypevr address@hidden parameter} file-name data-path
Location of the Prosody data storage directory. See
address@hidden://prosody.im/doc/configure}.
address@hidden://prosody.im/doc/configure}.
Defaults to @samp{"/var/lib/prosody"}.
@end deftypevr
@deftypevr address@hidden parameter} file-name-list plugin-paths
Additional plugin directories. They are searched in all the specified
-paths in order. See @url{http://prosody.im/doc/plugins_directory}.
+paths in order. See @url{https://prosody.im/doc/plugins_directory}.
Defaults to @samp{()}.
@end deftypevr
@@ -14040,15 +14040,15 @@ Defaults to @samp{"/etc/prosody/certs"}.
@deftypevr address@hidden parameter} string-list admins
This is a list of accounts that are admins for the server. Note that you
-must create the accounts separately. See @url{http://prosody.im/doc/admins}
and
address@hidden://prosody.im/doc/creating_accounts}.
+must create the accounts separately. See @url{https://prosody.im/doc/admins}
and
address@hidden://prosody.im/doc/creating_accounts}.
Example: @code{(admins '("user1@@example.com" "user2@@example.net"))}
Defaults to @samp{()}.
@end deftypevr
@deftypevr address@hidden parameter} boolean use-libevent?
Enable use of libevent for better performance under high load. See
address@hidden://prosody.im/doc/libevent}.
address@hidden://prosody.im/doc/libevent}.
Defaults to @samp{#f}.
@end deftypevr
@@ -14056,7 +14056,7 @@ Defaults to @samp{#f}.
This is the list of modules Prosody will load on startup. It looks for
@code{mod_modulename.lua} in the plugins folder, so make sure that exists too.
Documentation on modules can be found at:
address@hidden://prosody.im/doc/modules}.
address@hidden://prosody.im/doc/modules}.
Defaults to @samp{("roster" "saslauth" "tls" "dialback" "disco" "carbons"
"private" "blocklist" "vcard" "version" "uptime" "time" "ping" "pep" "register"
"admin_adhoc")}.
@end deftypevr
@@ -14069,13 +14069,13 @@ Defaults to @samp{()}.
@deftypevr address@hidden parameter} file-name groups-file
Path to a text file where the shared groups are defined. If this path is
empty then @samp{mod_groups} does nothing. See
address@hidden://prosody.im/doc/modules/mod_groups}.
address@hidden://prosody.im/doc/modules/mod_groups}.
Defaults to @samp{"/var/lib/prosody/sharedgroups.txt"}.
@end deftypevr
@deftypevr address@hidden parameter} boolean allow-registration?
Disable account creation by default, for security. See
address@hidden://prosody.im/doc/creating_accounts}.
address@hidden://prosody.im/doc/creating_accounts}.
Defaults to @samp{#f}.
@end deftypevr
@@ -14083,7 +14083,7 @@ Defaults to @samp{#f}.
These are the SSL/TLS-related settings. Most of them are disabled so to
use Prosody's defaults. If you do not completely understand these options, do
not add them to your config, it is easy to lower the security of your server
-using them. See @url{http://prosody.im/doc/advanced_ssl_config}.
+using them. See @url{https://prosody.im/doc/advanced_ssl_config}.
Available @code{ssl-configuration} fields are:
@@ -14154,7 +14154,7 @@ Password for encrypted private keys.
@deftypevr address@hidden parameter} boolean c2s-require-encryption?
Whether to force all client-to-server connections to be encrypted or not.
-See @url{http://prosody.im/doc/modules/mod_tls}.
+See @url{https://prosody.im/doc/modules/mod_tls}.
Defaults to @samp{#f}.
@end deftypevr
@@ -14166,7 +14166,7 @@ Defaults to @samp{("DIGEST-MD5")}.
@deftypevr address@hidden parameter} boolean s2s-require-encryption?
Whether to force all server-to-server connections to be encrypted or not.
-See @url{http://prosody.im/doc/modules/mod_tls}.
+See @url{https://prosody.im/doc/modules/mod_tls}.
Defaults to @samp{#f}.
@end deftypevr
@@ -14174,7 +14174,7 @@ Defaults to @samp{#f}.
Whether to require encryption and certificate authentication. This
provides ideal security, but requires servers you communicate with to support
encryption AND present valid, trusted certificates. See
address@hidden://prosody.im/doc/s2s#security}.
address@hidden://prosody.im/doc/s2s#security}.
Defaults to @samp{#f}.
@end deftypevr
@@ -14182,14 +14182,14 @@ Defaults to @samp{#f}.
Many servers don't support encryption or have invalid or self-signed
certificates. You can list domains here that will not be required to
authenticate using certificates. They will be authenticated using DNS. See
address@hidden://prosody.im/doc/s2s#security}.
address@hidden://prosody.im/doc/s2s#security}.
Defaults to @samp{()}.
@end deftypevr
@deftypevr address@hidden parameter} string-list s2s-secure-domains
Even if you leave @code{s2s-secure-auth?} disabled, you can still require
valid certificates for some domains by specifying a list here. See
address@hidden://prosody.im/doc/s2s#security}.
address@hidden://prosody.im/doc/s2s#security}.
Defaults to @samp{()}.
@end deftypevr
@@ -14197,20 +14197,20 @@ Defaults to @samp{()}.
Select the authentication backend to use. The default provider stores
passwords in plaintext and uses Prosody's configured data storage to store the
authentication data. If you do not trust your server please see
address@hidden://prosody.im/doc/modules/mod_auth_internal_hashed} for
information
address@hidden://prosody.im/doc/modules/mod_auth_internal_hashed} for
information
about using the hashed backend. See also
address@hidden://prosody.im/doc/authentication}
address@hidden://prosody.im/doc/authentication}
Defaults to @samp{"internal_plain"}.
@end deftypevr
@deftypevr address@hidden parameter} maybe-string log
Set logging options. Advanced logging configuration is not yet supported
-by the GuixSD Prosody Service. See @url{http://prosody.im/doc/logging}.
+by the GuixSD Prosody Service. See @url{https://prosody.im/doc/logging}.
Defaults to @samp{"*syslog"}.
@end deftypevr
@deftypevr address@hidden parameter} file-name pidfile
-File to write pid in. See @url{http://prosody.im/doc/modules/mod_posix}.
+File to write pid in. See @url{https://prosody.im/doc/modules/mod_posix}.
Defaults to @samp{"/var/run/prosody/prosody.pid"}.
@end deftypevr
@@ -14237,7 +14237,7 @@ instance can serve many domains, each one defined as a
VirtualHost entry in
Prosody's configuration. Conversely a server that hosts a single domain would
have just one VirtualHost entry.
-See @url{http://prosody.im/doc/configure#virtual_host_settings}.
+See @url{https://prosody.im/doc/configure#virtual_host_settings}.
Available @code{virtualhost-configuration} fields are:
@@ -14258,7 +14258,7 @@ Internal components are implemented with
Prosody-specific plugins. To add an
internal component, you simply fill the hostname field, and the plugin you wish
to use for the component.
-See @url{http://prosody.im/doc/components}.
+See @url{https://prosody.im/doc/components}.
Defaults to @samp{()}.
Available @code{int-component-configuration} fields are:
@@ -14277,10 +14277,10 @@ Multi-user chat (MUC) is Prosody's module for
allowing you to create
hosted chatrooms/conferences for XMPP users.
General information on setting up and using multi-user chatrooms can be found
-in the "Chatrooms" documentation (@url{http://prosody.im/doc/chatrooms}),
+in the "Chatrooms" documentation (@url{https://prosody.im/doc/chatrooms}),
which you should read if you are new to XMPP chatrooms.
-See also @url{http://prosody.im/doc/modules/mod_muc}.
+See also @url{https://prosody.im/doc/modules/mod_muc}.
Available @code{mod-muc-configuration} fields are:
@@ -14311,7 +14311,7 @@ Defaults to @samp{20}.
@deftypevr address@hidden parameter} ext-component-configuration-list
ext-components
External components use XEP-0114, which most standalone components
support. To add an external component, you simply fill the hostname field.
See
address@hidden://prosody.im/doc/components}.
address@hidden://prosody.im/doc/components}.
Defaults to @samp{()}.
Available @code{ext-component-configuration} fields are:
diff --git a/gnu/services/messaging.scm b/gnu/services/messaging.scm
index d57a756..a9820ed 100644
--- a/gnu/services/messaging.scm
+++ b/gnu/services/messaging.scm
@@ -320,13 +320,13 @@ can create such a file with:
(data-path
(file-name "/var/lib/prosody")
"Location of the Prosody data storage directory. See
address@hidden://prosody.im/doc/configure}."
address@hidden://prosody.im/doc/configure}."
global)
(plugin-paths
(file-name-list '())
"Additional plugin directories. They are searched in all the specified
-paths in order. See @url{http://prosody.im/doc/plugins_directory}."
+paths in order. See @url{https://prosody.im/doc/plugins_directory}."
global)
(certificates
@@ -339,15 +339,15 @@ certificates/keys from the directory specified here."
(admins
(string-list '())
"This is a list of accounts that are admins for the server. Note that you
-must create the accounts separately. See @url{http://prosody.im/doc/admins}
and
address@hidden://prosody.im/doc/creating_accounts}.
+must create the accounts separately. See @url{https://prosody.im/doc/admins}
and
address@hidden://prosody.im/doc/creating_accounts}.
Example: @code{(admins '(\"user1@@example.com\" \"user2@@example.net\"))}"
common)
(use-libevent?
(boolean #f)
"Enable use of libevent for better performance under high load. See
address@hidden://prosody.im/doc/libevent}."
address@hidden://prosody.im/doc/libevent}."
common)
(modules-enabled
@@ -355,7 +355,7 @@ Example: @code{(admins '(\"user1@@example.com\"
\"user2@@example.net\"))}"
"This is the list of modules Prosody will load on startup. It looks for
@code{mod_modulename.lua} in the plugins folder, so make sure that exists too.
Documentation on modules can be found at:
address@hidden://prosody.im/doc/modules}."
address@hidden://prosody.im/doc/modules}."
common)
(modules-disabled
@@ -368,13 +368,13 @@ should you want to disable them then add them to this
list."
(file-name "/var/lib/prosody/sharedgroups.txt")
"Path to a text file where the shared groups are defined. If this path is
empty then @samp{mod_groups} does nothing. See
address@hidden://prosody.im/doc/modules/mod_groups}."
address@hidden://prosody.im/doc/modules/mod_groups}."
common)
(allow-registration?
(boolean #f)
"Disable account creation by default, for security. See
address@hidden://prosody.im/doc/creating_accounts}."
address@hidden://prosody.im/doc/creating_accounts}."
common)
(ssl
@@ -382,13 +382,13 @@ empty then @samp{mod_groups} does nothing. See
"These are the SSL/TLS-related settings. Most of them are disabled so to
use Prosody's defaults. If you do not completely understand these options, do
not add them to your config, it is easy to lower the security of your server
-using them. See @url{http://prosody.im/doc/advanced_ssl_config}."
+using them. See @url{https://prosody.im/doc/advanced_ssl_config}."
common)
(c2s-require-encryption?
(boolean #f)
"Whether to force all client-to-server connections to be encrypted or not.
-See @url{http://prosody.im/doc/modules/mod_tls}."
+See @url{https://prosody.im/doc/modules/mod_tls}."
common)
(disable-sasl-mechanisms
@@ -400,7 +400,7 @@ See @url{http://prosody.im/doc/modules/mod_tls}."
(s2s-require-encryption?
(boolean #f)
"Whether to force all server-to-server connections to be encrypted or not.
-See @url{http://prosody.im/doc/modules/mod_tls}."
+See @url{https://prosody.im/doc/modules/mod_tls}."
common)
(s2s-secure-auth?
@@ -408,7 +408,7 @@ See @url{http://prosody.im/doc/modules/mod_tls}."
"Whether to require encryption and certificate authentication. This
provides ideal security, but requires servers you communicate with to support
encryption AND present valid, trusted certificates. See
address@hidden://prosody.im/doc/s2s#security}."
address@hidden://prosody.im/doc/s2s#security}."
common)
(s2s-insecure-domains
@@ -416,14 +416,14 @@ encryption AND present valid, trusted certificates. See
"Many servers don't support encryption or have invalid or self-signed
certificates. You can list domains here that will not be required to
authenticate using certificates. They will be authenticated using DNS. See
address@hidden://prosody.im/doc/s2s#security}."
address@hidden://prosody.im/doc/s2s#security}."
common)
(s2s-secure-domains
(string-list '())
"Even if you leave @code{s2s-secure-auth?} disabled, you can still require
valid certificates for some domains by specifying a list here. See
address@hidden://prosody.im/doc/s2s#security}."
address@hidden://prosody.im/doc/s2s#security}."
common)
(authentication
@@ -431,21 +431,21 @@ valid certificates for some domains by specifying a list
here. See
"Select the authentication backend to use. The default provider stores
passwords in plaintext and uses Prosody's configured data storage to store the
authentication data. If you do not trust your server please see
address@hidden://prosody.im/doc/modules/mod_auth_internal_hashed} for
information
address@hidden://prosody.im/doc/modules/mod_auth_internal_hashed} for
information
about using the hashed backend. See also
address@hidden://prosody.im/doc/authentication}"
address@hidden://prosody.im/doc/authentication}"
common)
;; TODO: Handle more complicated log structures.
(log
(maybe-string "*syslog")
"Set logging options. Advanced logging configuration is not yet supported
-by the GuixSD Prosody Service. See @url{http://prosody.im/doc/logging}."
+by the GuixSD Prosody Service. See @url{https://prosody.im/doc/logging}."
common)
(pidfile
(file-name "/var/run/prosody/prosody.pid")
- "File to write pid in. See
@url{http://prosody.im/doc/modules/mod_posix}."
+ "File to write pid in. See
@url{https://prosody.im/doc/modules/mod_posix}."
global)
(http-max-content-size
@@ -476,7 +476,7 @@ instance can serve many domains, each one defined as a
VirtualHost entry in
Prosody's configuration. Conversely a server that hosts a single domain would
have just one VirtualHost entry.
-See @url{http://prosody.im/doc/configure#virtual_host_settings}."
+See @url{https://prosody.im/doc/configure#virtual_host_settings}."
global)
(int-components
@@ -490,14 +490,14 @@ Internal components are implemented with Prosody-specific
plugins. To add an
internal component, you simply fill the hostname field, and the plugin you wish
to use for the component.
-See @url{http://prosody.im/doc/components}."
+See @url{https://prosody.im/doc/components}."
global)
(ext-components
(ext-component-configuration-list '())
"External components use XEP-0114, which most standalone components
support. To add an external component, you simply fill the hostname field.
See
address@hidden://prosody.im/doc/components}."
address@hidden://prosody.im/doc/components}."
global)
(component-secret
@@ -536,10 +536,10 @@ support. To add an external component, you simply fill
the hostname field. See
hosted chatrooms/conferences for XMPP users.
General information on setting up and using multi-user chatrooms can be found
-in the \"Chatrooms\" documentation (@url{http://prosody.im/doc/chatrooms}),
+in the \"Chatrooms\" documentation (@url{https://prosody.im/doc/chatrooms}),
which you should read if you are new to XMPP chatrooms.
-See also @url{http://prosody.im/doc/modules/mod_muc}."
+See also @url{https://prosody.im/doc/modules/mod_muc}."
int-component)
(hostname
- 10/18: gnu: ruby-daemons: Update to 1.2.5., (continued)
- 10/18: gnu: ruby-daemons: Update to 1.2.5., Tobias Geerinckx-Rice, 2017/12/24
- 08/18: gnu: cmark: Mark up description., Tobias Geerinckx-Rice, 2017/12/24
- 13/18: gnu: ruby-simplecov-html: Update to 0.10.2., Tobias Geerinckx-Rice, 2017/12/24
- 09/18: gnu: ruby-crass: Update to 1.0.3., Tobias Geerinckx-Rice, 2017/12/24
- 11/18: gnu: ruby-hoe: Update to 3.16.2., Tobias Geerinckx-Rice, 2017/12/24
- 06/18: gnu: pulsemixer: Update to 1.4.0., Tobias Geerinckx-Rice, 2017/12/24
- 12/18: gnu: ruby-pry: Update to 0.11.3., Tobias Geerinckx-Rice, 2017/12/24
- 14/18: gnu: ruby-json-pure: Fix build failure., Tobias Geerinckx-Rice, 2017/12/24
- 16/18: gnu: python-ruamel.yaml: Update to 0.15.35., Tobias Geerinckx-Rice, 2017/12/24
- 17/18: gnu: ecl-flexi-streams: Update to 1.0.16., Tobias Geerinckx-Rice, 2017/12/24
- 01/18: services: messaging: Use HTTPS for prosody.im URLs.,
Tobias Geerinckx-Rice <=
- 07/18: gnu: cmark: Update to 0.28.3., Tobias Geerinckx-Rice, 2017/12/24
- 15/18: gnu: dotherside: Update to 0.6.3., Tobias Geerinckx-Rice, 2017/12/24
- 18/18: gnu: python-cbor: Mark up description., Tobias Geerinckx-Rice, 2017/12/24
- 02/18: gnu, doc: Use HTTPS for cran.r-project.org home pages., Tobias Geerinckx-Rice, 2017/12/24