diff options
author | Omar Polo <op@omarpolo.com> | 2021-07-08 20:41:43 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-07-09 08:30:55 +0200 |
commit | 762b9b991f373e5077d7e49396af62a34fa1c1ff (patch) | |
tree | 54df1927e78e706b1a92e44a28263fecf9a93281 /gmid.1 | |
parent | ff954a3e7641e83cca043ecc30789132478c7acd (diff) |
add => in env/param and `port' between hostname and port for fastcgi
In the same spite of the last commit, add the missing separators
between strings to avoid the auto-concat pitfalls. `=>' is used to
separate between `env' and `param' arguments, while for `fastcgi' the
keyword `port' is required between the hostname/ip address and the
port (if provided).
Since `env', `param' and `fastcgi' are all new stuff, there's no need
to keep compatibility.
Diffstat (limited to 'gmid.1')
-rw-r--r-- | gmid.1 | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -297,7 +297,7 @@ is set to Handle all the requests for the current virtual host using the CGI script at .Pa path . -.It Ic env Ar name Ar value +.It Ic env Ar name Cm => Ar value Set the environment variable .Ar name to @@ -306,7 +306,7 @@ when executing CGI scripts. Can be provided more than once. .\" don't document the "spawn <prog>" form because it probably won't .\" be kept. -.It Ic fastcgi Oo Ic tcp Oc Pa socket Oo Ar port Oc +.It Ic fastcgi Oo Ic tcp Oc Pa socket Oo Cm port Ar port Oc Enable FastCGI instead of serving files. The .Pa socket @@ -359,7 +359,7 @@ except .Ic entrypoint No and Ic cgi . .It Ic log Ar bool Enable or disable the logging for the current server or location block. -.It Ic param Ar name Ar value +.It Ic param Ar name Cm => Ar value Set the param .Ar name to |