-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcgi-fcgi.1
135 lines (135 loc) · 4.7 KB
/
cgi-fcgi.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH cgi-fcgi 1 1997-09-17
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
cgi-fcgi \- bridge from CGI to FastCGI
.SH SYNOPSIS
.B cgi-fcgi
-f cmdPath
.br
.B cgi-fcgi
-bind -connect connName
.br
.B cgi-fcgi
-start -connect connName appPath [nServers]
.br
.B cgi-fcgi
-connect connName appPath [nServers]
.SH DESCRIPTION
.PP
cgi-fcgi is a CGI/1.1 program that communicates with an
already-running FastCGI application in order to respond to an
HTTP request. cgi-fcgi is also capable of starting a FastCGI
application.
.PP
When you invoke cgi-fcgi as
.IP
.B cgi-fcgi
-f cmdPath
.PP
then cgi-fcgi opens the file at cmdPath and reads its
arguments from that file. cgi-fcgi will skip lines
that begin with the comment character #. The first
non-comment line should contain valid arguments in
one of the other three forms.
.PP
The -f form of cgi-fcgi is designed for Unix systems
whose exec(2) family of system calls supports the execution of
command interpreter files. For instance, if a file with
execute permission contains the text
.IP
#! /bin/cgi-fcgi -f
.br
-connect /httpd/root/sock/app /httpd/root/bin/app
.PP
the effect is the same as executing
.IP
/usr/bin/cgi-fcgi -connect /httpd/root/sock/app /httpd/root/bin/app
.PP
When you invoke cgi-fcgi as
.IP
cgi-fcgi -bind -connect connName
.PP
the connName argument is either the path name of a Unix domain
listening socket or a host:port pair. If connName contains
a colon, it is assumed to be host:port. cgi-fcgi performs
a connect(2) using connName. If the connect succeeds, cgi-fcgi
forwards the CGI environment variables and stdin data to the
FastCGI application, and forwards the stdout and stderr data from
the application to cgi-fcgi's stdout (most likely connected to
a Web server). When the FastCGI application signals the end of
its response, cgi-fcgi flushes its buffers and
exits, and the Web server completes the http response.
.PP
When you invoke cgi-fcgi as
.IP
cgi-fcgi -start -connect connName appPath [nServers]
.PP
then cgi-fcgi performs the function of starting one or more
FastCGI application processes. The connName argument specifies
either the path name of the Unix domain listening socket that
cgi-fcgi will create, or is "localhost:NNN" where NNN is the port
number of the TCP/IP listening socket that cgi-fcgi will create
on the local machine. (cgi-fcgi will not create processes
on remote machines.) After cgi-fcgi creates the listening socket,
it forks nServers copies of a process running the executable file
appPath. If nServers is omitted, the effect is as if the value "1"
had been specified. The processes share the single listening socket.
.PP
When you invoke cgi-fcgi as
.IP
cgi-fcgi -connect connName appPath [nServers]
.PP
cgi-fcgi performs -bind and then, if necssary, performs -start
and repeats the -bind. That is, cgi-fcgi first operates as if
the command had been
.IP
cgi-fcgi -bind -connect connName
.PP
If the connect fails, cgi-fcgi tries
.IP
cgi-fcgi -start -connect connName appPath [nServers]
.PP
and finally retries
.IP
cgi-fcgi -bind -connect connName
.PP
In this form, cgi-fcgi does not support TCP/IP connections.
.SH ENVIRONMENT VARIABLES
The usual CGI ones, but they are not interpreted by cgi-fcgi.
.SH SEE ALSO
.BR FGCI_accept (3).
(in Debian, /usr/share/doc/libfcgi?/*)
.SH BUGS
cgi-fcgi doesn't generate useful HTTP responses in case of error,
and it generates no response at all when run as start-fcgi.
.PP
On Digital UNIX 3.0 systems the implementation of Unix Domain
sockets does not work when such sockets are stored on NFS file
systems. Symptom: cgi-fcgi may core dump or may exit with
status 38. Work-around: store sockets in local file systems
(/tmp often works) or use TCP/IP.
.PP
On AIX systems the implementation of listening sockets
does not support socket sharing, and the standard FastCGI
application libraries can't synchronize access to AIX listening
sockets. Work-around: Don't use the nServers argument on AIX.
.SH HISTORY
Copyright (c) 1996 Open Market, Inc.
See the file "LICENSE.TERMS" for information on usage and redistribution
of this file, and for a DISCLAIMER OF ALL WARRANTIES.
$Id: cgi-fcgi.1,v 1.1.1.1 1997/09/16 15:36:26 stanleyg Exp $