From: Luca Toscano Date: Wed, 21 Feb 2018 10:12:43 +0000 (+0000) Subject: Documentation rebuild X-Git-Tag: 2.4.31~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75db20be8022f9de2a92a65a7882a0269be50716;p=apache Documentation rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1824952 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/install.html.en b/docs/manual/install.html.en index 8d0e62460e..fe07e7dc34 100644 --- a/docs/manual/install.html.en +++ b/docs/manual/install.html.en @@ -65,6 +65,31 @@

Overview for the impatient

+
+
Installing on Fedora/CentOS/Red Hat Enterprise Linux
+
+
sudo yum install httpd
+sudo systemctl enable httpd
+sudo systemctl start httpd
+ + +
Newer releases of these distros use + dnf rather than yum. See the + Fedora project's documentation for platform-specific notes.
+
+ +
Installing on Ubuntu/Debian
+
+
sudo apt install apache2
+sudo service apache2 start
+ + +
See Ubuntu's documentation for platform-specific notes.
+ +
+ +
Installing from source
+
@@ -115,15 +140,22 @@
-

NN must be replaced with the current version - number, and PREFIX must be replaced with the - filesystem path under which the server should be installed. If - PREFIX is not specified, it defaults to - /usr/local/apache2.

+

NN must be replaced with the current version + number, and PREFIX must be replaced with the + filesystem path under which the server should be installed. If + PREFIX is not specified, it defaults to + /usr/local/apache2.

+ +

Each section of the compilation and installation process is + described in more detail below, beginning with the requirements + for compiling and installing Apache httpd.

+
+
+ +
Don't see your favorite platform mentioned + here? Come help us + improve this doc.
-

Each section of the compilation and installation process is - described in more detail below, beginning with the requirements - for compiling and installing Apache httpd.

top

Requirements

diff --git a/docs/manual/install.xml.de b/docs/manual/install.xml.de index ce9fc89cc9..ed193d4fdb 100644 --- a/docs/manual/install.xml.de +++ b/docs/manual/install.xml.de @@ -1,7 +1,7 @@ - + + diff --git a/docs/manual/install.xml.fr b/docs/manual/install.xml.fr index 4d8ebf3f8a..09df09fb0d 100644 --- a/docs/manual/install.xml.fr +++ b/docs/manual/install.xml.fr @@ -3,7 +3,7 @@ - + + + + +mod_proxy_uwsgi - Apache HTTP Server Version 2.4 + + + + + + + + +
<-
+ +
+

Apache Module mod_proxy_uwsgi

+
+

Available Languages:  en 

+
+ + + +
Description:UWSGI gateway module for mod_proxy
Status:Extension
Module Identifier:proxy_uwsgi_module
Source File:mod_proxy_uwsgi.c
+

Summary

+ +

This module requires the service of mod_proxy. It provides support for the + UWSGI protocol.

+ +

Thus, in order to get the ability of handling the UWSGI protocol, + mod_proxy and mod_proxy_uwsgi have to + be present in the server.

+ +

Warning

+

Do not enable proxying until you have secured your server. Open proxy + servers are dangerous both to your network and to the Internet at + large.

+
+
+
Support Apache!

Topics

+

Directives

+

This module provides no + directives.

+

Bugfix checklist

See also

+
+
top
+
+

Examples

+

Remember, in order to make the following examples work, you have to + enable mod_proxy and mod_proxy_uwsgi.

+ +

Simple gateway

ProxyPass "/uwsgi-bin/" "uwsgi://localhost:4000/"
+
+ +

The balanced gateway needs mod_proxy_balancer and + at least one load balancer algorithm module, such as + mod_lbmethod_byrequests, in addition to the proxy + modules listed above. mod_lbmethod_byrequests is the + default, and will be used for this example configuration.

+ +

Balanced gateway

ProxyPass "/uwsgi-bin/" "balancer://somecluster/"
+<Proxy balancer://somecluster>
+    BalancerMember uwsgi://localhost:4000
+    BalancerMember uwsgi://localhost:4001
+</Proxy>
+
+
+
+
+

Available Languages:  en 

+
top

Comments

Notice:
This is not a Q&A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our mailing lists.
+
+ \ No newline at end of file diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index 2fa37d4a7b..2274cb591c 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -1505,7 +1505,6 @@ The available (case-insensitive) protocols are:

for Remote Server Auth Syntax:SSLProxyCACertificateFile file-path Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1527,7 +1526,6 @@ preference. This can be used alternatively and/or additionally to Remote Server Auth Syntax:SSLProxyCACertificatePath directory-path Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1552,7 +1550,6 @@ contains the appropriate symbolic links.

Syntax:SSLProxyCARevocationCheck chain|leaf|none Default:SSLProxyCARevocationCheck none Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1590,7 +1587,6 @@ to succeed - otherwise it will fail with an Remote Server Auth Syntax:SSLProxyCARevocationFile file-path Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1612,7 +1608,6 @@ used alternatively and/or additionally to Syntax:SSLProxyCARevocationPath directory-path Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1638,7 +1633,6 @@ contains the appropriate symbolic links.

Syntax:SSLProxyCheckPeerCN on|off Default:SSLProxyCheckPeerCN on Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1680,7 +1674,6 @@ SSLProxyCheckPeerName off Syntax:SSLProxyCheckPeerExpire on|off Default:SSLProxyCheckPeerExpire on Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1701,7 +1694,6 @@ sent. Syntax:SSLProxyCheckPeerName on|off Default:SSLProxyCheckPeerName on Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl Compatibility:Apache HTTP Server 2.4.5 and later @@ -1742,7 +1734,6 @@ proxy handshake Syntax:SSLProxyCipherSuite cipher-spec Default:SSLProxyCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:+LOW:+EXP Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1759,7 +1750,6 @@ for additional information.

Syntax:SSLProxyEngine on|off Default:SSLProxyEngine off Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1868,7 +1858,6 @@ directory contains the appropriate symbolic links.

Syntax:SSLProxyProtocol [+|-]protocol ... Default:SSLProxyProtocol all -SSLv3 (up to 2.4.16: all) Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1889,7 +1878,6 @@ for additional information. Syntax:SSLProxyVerify level Default:SSLProxyVerify none Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl @@ -1927,7 +1915,6 @@ Certificate verification Syntax:SSLProxyVerifyDepth number Default:SSLProxyVerifyDepth 1 Context:server config, virtual host, proxy section -Override:Not applicable Status:Extension Module:mod_ssl diff --git a/docs/manual/mod/mod_ssl.xml.fr b/docs/manual/mod/mod_ssl.xml.fr index e89d5a41fb..23e6a1a303 100644 --- a/docs/manual/mod/mod_ssl.xml.fr +++ b/docs/manual/mod/mod_ssl.xml.fr @@ -1,7 +1,7 @@ - + diff --git a/docs/manual/mod/mod_ssl.xml.meta b/docs/manual/mod/mod_ssl.xml.meta index 736a11a017..be20a51f56 100644 --- a/docs/manual/mod/mod_ssl.xml.meta +++ b/docs/manual/mod/mod_ssl.xml.meta @@ -8,6 +8,6 @@ en - fr + fr diff --git a/docs/manual/mod/overrides.html.en b/docs/manual/mod/overrides.html.en index ee5389e5ff..90b737050d 100644 --- a/docs/manual/mod/overrides.html.en +++ b/docs/manual/mod/overrides.html.en @@ -669,48 +669,6 @@ except the named ones Controls the default access state and the order in which Allow and Deny are evaluated. -
top

Not applicable

-

- [This section has no description. It's possible that the documentation is - incomplete, or that the directives here have an incorrect or misspelled - Override type. Please consider reporting this in the - comments section.] -

- - - - - - - - - - - - - - - - - - - - - - - - - -
SSLProxyCACertificateFilemod_ssl
File of concatenated PEM-encoded CA Certificates -for Remote Server Auth
SSLProxyCACertificatePathmod_ssl
Directory of PEM-encoded CA Certificates for -Remote Server Auth
SSLProxyCARevocationCheckmod_ssl
Enable CRL-based revocation checking for Remote Server Auth
SSLProxyCARevocationFilemod_ssl
File of concatenated PEM-encoded CA CRLs for -Remote Server Auth
SSLProxyCARevocationPathmod_ssl
Directory of PEM-encoded CA CRLs for -Remote Server Auth
SSLProxyCheckPeerCNmod_ssl
Whether to check the remote server certificate's CN field -
SSLProxyCheckPeerExpiremod_ssl
Whether to check if remote server certificate is expired -
SSLProxyCheckPeerNamemod_ssl
Configure host name checking for remote server certificates -
SSLProxyCipherSuitemod_ssl
Cipher Suite available for negotiation in SSL -proxy handshake
SSLProxyEnginemod_ssl
SSL Proxy Engine Operation Switch
SSLProxyProtocolmod_ssl
Configure usable SSL protocol flavors for proxy usage
SSLProxyVerifymod_ssl
Type of remote server Certificate verification
SSLProxyVerifyDepthmod_ssl
Maximum depth of CA Certificates in Remote Server -Certificate verification
top

Options

The following directives are allowed in .htaccess files when