From: Rich Bowen Date: Tue, 19 May 2026 21:41:46 +0000 (+0000) Subject: Fix lowercase "cgi script" to "CGI script" in examples. X-Git-Tag: 2.4.68-rc1-candidate~112 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=564c4c35434bdfa7924b628f3eb46a1d846f9c42;p=thirdparty%2Fapache%2Fhttpd.git Fix lowercase "cgi script" to "CGI script" in examples. Backport glossary link for PATH_INFO from trunk. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1934413 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_actions.xml b/docs/manual/mod/mod_actions.xml index 2ce49533ea..6773e493b4 100644 --- a/docs/manual/mod/mod_actions.xml +++ b/docs/manual/mod/mod_actions.xml @@ -60,7 +60,7 @@ introduced in Apache 2.1

This directive adds an action, which will activate cgi-script when action-type is triggered by - the request. The cgi-script is the URL-path to a + the request. The cgi-script is the URL-path to a resource that has been designated as a CGI script using ScriptAlias or AddHandler. The @@ -68,7 +68,7 @@ introduced in Apache 2.1 href="../handler.html">handler or a MIME content type. It sends the URL and file path of the requested document using the standard CGI - PATH_INFO and PATH_TRANSLATED + PATH_INFO and PATH_TRANSLATED environment variables. The handler used for the particular request is passed using the REDIRECT_HANDLER variable.

@@ -81,7 +81,7 @@ Action image/gif /cgi-bin/images.cgi

In this example, requests for files with a MIME content type of image/gif will be handled by the - specified cgi script /cgi-bin/images.cgi.

+ specified CGI script /cgi-bin/images.cgi.

Example: File extension @@ -92,7 +92,7 @@ Action my-file-type "/cgi-bin/program.cgi"

In this example, requests for files with a file extension of - .xyz are handled by the specified cgi script + .xyz are handled by the specified CGI script /cgi-bin/program.cgi.

The optional virtual modifier turns off the check