aboutsummaryrefslogtreecommitdiffstats
path: root/slowcgi.8
blob: e1f0afbdf2f7cfdc9e0036d326f9abc38efbf20e (plain) (blame)
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
.\"   $OpenBSD: slowcgi.8,v 1.17 2022/08/06 17:11:36 op Exp $
.\"
.\" Copyright (c) 2013 Florian Obser <florian@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
.\" copyright notice and this permission notice appear in all copies.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
.Dd $Mdocdate: August 6 2022 $
.Dt SLOWCGI 8
.Os
.Sh NAME
.Nm slowcgi
.Nd a FastCGI to CGI wrapper server
.Sh SYNOPSIS
.Nm
.Op Fl dv
.Op Fl p Ar path
.Op Fl s Ar socket
.Op Fl t Ar timeout
.Op Fl U Ar user
.Op Fl u Ar user
.Sh DESCRIPTION
.Nm
is a server which implements the FastCGI Protocol to execute CGI scripts.
FastCGI was designed to overcome the CGI protocol's scalability
and resource sharing limitations.
While CGI scripts need to be forked for every request, FastCGI scripts
can be kept running and handle many HTTP requests.
.Pp
.Nm
is a simple server that translates FastCGI requests to the CGI protocol.
It executes the requested CGI script and translates its output back to the
FastCGI protocol.
.Pp
Modern web frameworks and web applications usually come with the
capability to run as FastCGI servers.
.Nm
is not intended for these applications.
.Pp
.Nm
opens a socket at
.Pa /var/www/run/slowcgi.sock ,
owned by www:www,
with permissions 0660.
It will then
.Xr chroot 8
to
.Pa /var/www
and drop privileges to user
.Qq www .
.Pp
The options are as follows:
.Bl -tag -width Ds
.It Fl d
Do not daemonize.
If this option is specified,
.Nm
will run in the foreground and log to stderr.
.It Fl p Ar path
.Xr chroot 2
to
.Ar path .
A
.Ar path
of
.Pa /
effectively disables the chroot.
.It Fl s Ar socket
Create and bind to alternative local socket at
.Ar socket .
.It Fl t Ar timeout
Terminate the request after
.Ar timeout
seconds instead of the default 120 seconds.
The CGI script is left to run but its standard input, output and error
will be closed.
.It Fl U Ar user
Change the owner of
.Pa /var/www/run/slowcgi.sock
to
.Ar user
and its primary group instead of the default www:www.
.It Fl u Ar user
Drop privileges to
.Ar user
instead of default user www and
.Xr chroot 8
to
the home directory of
.Ar user .
.It Fl v
Enable more verbose (debug) logging.
.El
.Sh SEE ALSO
.Xr httpd 8
.Sh STANDARDS
.Rs
.%A Mark R. Brown
.%D April 1996
.%T FastCGI Specification
.Re
.Pp
.Rs
.%A D. Robinson, K. Coar
.%D October 2004
.%R RFC 3875
.%T The Common Gateway Interface (CGI) Version 1.1
.Re
.Sh HISTORY
The
.Nm
server first appeared in
.Ox 5.4 .
.Sh AUTHORS
.An Florian Obser Aq Mt florian@openbsd.org
.Sh BUGS
.Nm
only implements the parts of the FastCGI standard needed to execute
CGI scripts.
This is intentional.