[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] doc: Move the NGinx service configuration documentation together
From: |
Christopher Baines |
Subject: |
[PATCH] doc: Move the NGinx service configuration documentation together. |
Date: |
Tue, 30 May 2017 14:32:29 +0100 |
* doc/guix.texi (Web Services): Add documentation for
nginx-upstream-configuration and nginx-location-configuration.
(VPN Services): Remove documentation for nginx-upstream-configuration and
nginx-location-configuration.
---
doc/guix.texi | 115 +++++++++++++++++++++++++++++-----------------------------
1 file changed, 58 insertions(+), 57 deletions(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index f39724309..0f2c11bd3 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -13530,6 +13530,64 @@ Whether the server should add its configuration to
response.
@end table
@end deftp
address@hidden {Data Type} nginx-upstream-configuration
+Data type representing the configuration of an nginx @code{upstream}
+block. This type has the following parameters:
+
address@hidden @asis
address@hidden @code{name}
+Name for this group of servers.
+
address@hidden @code{servers}
+Specify the addresses of the servers in the group. The address can be
+specified as a IP address (e.g. @samp{127.0.0.1}), domain name
+(e.g. @samp{backend1.example.com}) or a path to a UNIX socket using the
+prefix @samp{unix:}. For addresses using an IP address or domain name,
+the default port is 80, and a different port can be specified
+explicitly.
+
address@hidden table
address@hidden deftp
+
address@hidden {Data Type} nginx-location-configuration
+Data type representing the configuration of an nginx @code{location}
+block. This type has the following parameters:
+
address@hidden @asis
address@hidden @code{uri}
+URI which this location block matches.
+
address@hidden body}
address@hidden @code{body}
+Body of the location block, specified as a string. This can contain many
+configuration directives. For example, to pass requests to a upstream
+server group defined using an @code{nginx-upstream-configuration} block,
+the following directive would be specified in the body @samp{proxy_pass
+http://upstream-name;}.
+
address@hidden table
address@hidden deftp
+
address@hidden {Data Type} nginx-named-location-configuration
+Data type representing the configuration of an nginx named location
+block. Named location blocks are used for request redirection, and not
+used for regular request processing. This type has the following
+parameters:
+
address@hidden @asis
address@hidden @code{name}
+Name to identify this location block.
+
address@hidden @code{body}
address@hidden body}, as the body for named location
+blocks can be used in a similar way to the
address@hidden body}. One restriction is that the
+body of a named location block cannot contain location blocks.
+
address@hidden table
address@hidden deftp
+
+
@node DNS Services
@subsubsection DNS Services
@cindex DNS (domain name system)
@@ -14296,63 +14354,6 @@ Defaults to @samp{#f}.
@c %end of automatic openvpn-server documentation
address@hidden {Data Type} nginx-upstream-configuration
-Data type representing the configuration of an nginx @code{upstream}
-block. This type has the following parameters:
-
address@hidden @asis
address@hidden @code{name}
-Name for this group of servers.
-
address@hidden @code{servers}
-Specify the addresses of the servers in the group. The address can be
-specified as a IP address (e.g. @samp{127.0.0.1}), domain name
-(e.g. @samp{backend1.example.com}) or a path to a UNIX socket using the
-prefix @samp{unix:}. For addresses using an IP address or domain name,
-the default port is 80, and a different port can be specified
-explicitly.
-
address@hidden table
address@hidden deftp
-
address@hidden {Data Type} nginx-location-configuration
-Data type representing the configuration of an nginx @code{location}
-block. This type has the following parameters:
-
address@hidden @asis
address@hidden @code{uri}
-URI which this location block matches.
-
address@hidden body}
address@hidden @code{body}
-Body of the location block, specified as a string. This can contain many
-configuration directives. For example, to pass requests to a upstream
-server group defined using an @code{nginx-upstream-configuration} block,
-the following directive would be specified in the body @samp{proxy_pass
-http://upstream-name;}.
-
address@hidden table
address@hidden deftp
-
address@hidden {Data Type} nginx-named-location-configuration
-Data type representing the configuration of an nginx named location
-block. Named location blocks are used for request redirection, and not
-used for regular request processing. This type has the following
-parameters:
-
address@hidden @asis
address@hidden @code{name}
-Name to identify this location block.
-
address@hidden @code{body}
address@hidden body}, as the body for named location
-blocks can be used in a similar way to the
address@hidden body}. One restriction is that the
-body of a named location block cannot contain location blocks.
-
address@hidden table
address@hidden deftp
-
@node Network File System
@subsubsection Network File System
@cindex NFS
--
2.13.0
- [PATCH] doc: Move the NGinx service configuration documentation together.,
Christopher Baines <=