Blob


1 .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 .\"
3 .\" Permission to use, copy, modify, and distribute this software for any
4 .\" purpose with or without fee is hereby granted, provided that the above
5 .\" copyright notice and this permission notice appear in all copies.
6 .\"
7 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 .Dd $Mdocdate: January 25 2021$
15 .Dt GMIND 1
16 .Os
17 .Sh NAME
18 .Nm gmid
19 .Nd dead simple zero configuration gemini server
20 .Sh SYNOPSIS
21 .Nm
22 .Bk -words
23 .Op Fl fn
24 .Op Fl c Ar config
25 |
26 .Op Fl 6hv
27 .Op Fl d Pa certs-dir
28 .Op Fl H Ar hostname
29 .Op Fl p Ar port
30 .Op Fl x Pa cgi
31 .Op Pa dir
32 .Ek
33 .Sh DESCRIPTION
34 .Nm
35 is a simple and minimal gemini server that can serve static files and
36 execute CGI scripts.
37 It can run without a configuration file with a limited set of features
38 available.
39 If a configuration file is given, no other flags shall be given,
40 except for
41 .Fl f
42 and
43 .Fl n .
44 .Pp
45 .Nm
46 fully supports IRIs (Internationalized Resource Identifiers, see
47 RFC3987).
48 .Pp
49 The options are as follows:
50 .Bl -tag -width 14m
51 .It Fl c Pa config
52 Specify the configuration file.
53 .It Fl f
54 Stays and logs on the foreground.
55 .It Fl n
56 Check that the configuration is valid, but don't start the server.
57 .El
58 .Pp
59 If no configuration file is given,
60 .Nm
61 will look for the following options
62 .Bl -tag -width 14m
63 .It Fl 6
64 Enable IPv6.
65 .It Fl d Pa certs-path
66 Directory where certificates for the config-less mode are stored.
67 By default is
68 .Pa $XDG_DATA_HOME/gmid ,
69 i.e.
70 .Pa ~/.local/share/gmid .
71 .It Fl H Ar hostname
72 The hostname, by default
73 .Ar localhost .
74 Certificates for the given
75 .Ar hostname
76 are searched inside the
77 .Pa certs-dir
78 directory given with the
79 .Fl d
80 option.
81 The have the form
82 .Pa hostname.cert.pem
83 and
84 .Pa hostname.key.pem .
85 If a certificate and key doesn't exists for a given hostname they
86 would be automatically generated.
87 .It Fl h
88 Print the usage and exit.
89 .It Fl p Ar port
90 The port to listen on, by default 1965.
91 .It Fl v
92 Increase the verbosity of the logs.
93 .It Fl x Pa path
94 Enable execution of CGI scripts.
95 See the description of the
96 .Ic cgi
97 .Ic server
98 option in the section
99 .Sq Servers
100 below to learn how
101 .Pa path
102 is processed.
103 Cannot be provided more than once.
104 .It Pa dir
105 The root directory to serve.
106 By default the current working directory is assumed.
107 .El
108 .Sh CONFIGURATION FILE
109 The configuration file is divided into two sections:
110 .Bl -tag -width xxxx
111 .It Sy Global Options
112 Global settings for
113 .Nm .
114 .It Sy Servers
115 Virtual hosts definition.
116 .El
117 .Pp
118 Within the sections, empty lines are ignored and comments can be put
119 anywhere in the file using a hash mark
120 .Pq Sq # ,
121 and extend to the end of the current line.
122 A boolean is either the symbol
123 .Sq on
124 or
125 .Sq off .
126 A string is a sequence of characters wrapped in double quotes,
127 .Dq like this .
128 .Ss Global Options
129 .Bl -tag -width 12m
130 .It Ic ipv6 Ar bool
131 Enable or disable IPv6 support.
132 By default is off.
133 .It Ic port Ar portno
134 The port to listen on.
135 By default is 1965.
136 .It Ic protocols Ar string
137 Specify the TLS protocols to enable.
138 Refer to
139 .Xr tls_config_parse_protocols 3
140 for the valid protocol string values.
141 By default, both TLSv1.3 and TLSv1.2 are used.
142 Use
143 .Dq tlsv1.3
144 to enable only TLSv1.3.
145 .It Ic mime Ar mime-type Ar file-extension
146 Add a mapping for the given
147 .Ar file-extension
148 to the given
149 .Ar mime-type .
150 Both argument are strings.
151 .It Ic chroot Pa path
152 .Xr chroot 2
153 the process to the given
154 .Pa path .
155 The daemon has to be run with root privileges and thus the option
156 .Ic user
157 needs to be provided, so
158 .Nm
159 can drop the privileges.
160 Note that they are dropped after loading the TLS keys, so it's
161 recommended to put those outside the chroot.
162 Future version of
163 .Nm
164 may require this.
165 .It Ic user Ar string
166 Run the daemon as the given user.
167 .El
168 .Ss Servers
169 Every virtual host is defined by a
170 .Ic server
171 block:
172 .Bl -tag -width Ds
173 .It Ic server Ar hostname Brq ...
174 Match the server name using shell globbing rules. This can be an explicit name,
175 .Ar www.example.com ,
176 or a name including a wildcards,
177 .Ar *.example.com .
178 .El
179 .Pp
180 Followed by a block of options that is enclosed in curly brackets:
181 .Bl -tag -width Ds
182 .It Ic cert Pa file
183 Path to the certificate to use for this server.
184 The
185 .Pa file
186 should contain a PEM encoded certificate.
187 This option is mandatory.
188 .It Ic key Pa file
189 Specify the private key to use for this server.
190 The
191 .Pa file
192 should contain a PEM encoded private key.
193 This option is mandatory.
194 .It Ic root Pa directory
195 Specify the root directory for this server.
196 This option is mandatory.
197 It's relative to the chroot, if enabled.
198 .It Ic cgi Pa path
199 Enable the execution of CGI scripts if
200 .Pa path
201 is a prefix of the user request string.
202 An empty path "" will effectively enable the execution of any file
203 with the executable bit set inside the root directory.
204 .It Ic default type Ar string
205 Set the default media type that is used if the media type for a
206 specified extension is not found.
207 If not specified, the
208 .Ic default type
209 is set to
210 .Dq application/octet-stream .
211 .It Ic lang Ar string
212 Specify the language tag for the text/gemini content served.
213 If not specified, no
214 .Dq lang
215 parameter will be added in the response.
216 .It Ic index Ar string
217 Set the directory index file.
218 If not specified, it defaults to
219 .Pa index.gmi .
220 .It Ic auto Ic index Ar bool
221 If no index file is found, automatically generate a directory listing.
222 It's disabled by default.
223 .It Ic location Pa path Brq ...
224 Specify server configuration rules for a specific location.
225 The
226 .Pa path
227 argument will be matched against the request path with shell globbing
228 rules.
229 In case of multiple location statements in the same context, the last
230 matching location will be put into effect.
231 Therefore is advisable to match for a generic paths first and for more
232 specific ones later on.
234 .Ic location
235 section may include most of the server configuration rules
236 except
237 .Ic cert , Ic key , Ic root , Ic location No and Ic CGI .
238 .El
239 .Sh CGI
240 When CGI scripts are enabled for a directory, a request for an
241 executable file will execute it and fed its output to the client.
242 .Pp
243 The CGI scripts are executed in the root directory of the virtual
244 host, or in the served directory if run without config, and inherits
245 the environment from
246 .Nm
247 with these additional variables set:
248 .Bl -tag -width 18m
249 .It Ev GATEWAY_INTERFACE
250 "CGI/1.1"
251 .It Ev SERVER_PROTOCOL
252 "GEMINI"
253 .It Ev SERVER_SOFTWARE
254 "gmid"
255 .It Ev SERVER_PORT
256 "1965"
257 .It Ev SERVER_NAME
258 The vhost.
259 This variable is not available when operating without a configuration.
260 .It Ev SCRIPT_NAME
261 The (public) path to the script, e.g.
262 .Pa "/cgi-bin/example.cgi"
263 .It Ev SCRIPT_EXECUTABLE
264 The full path to the executable.
265 .It Ev REQUEST_URI
266 The user request (without the query parameters.)
267 .It Ev REQUEST_RELATIVE
268 The request relative to the script.
269 .It Ev QUERY_STRING
270 The query parameters.
271 .It Ev REMOTE_HOST
272 The remote IP address.
273 .It Ev REMOTE_ADDR
274 The remote IP address.
275 .It Ev DOCUMENT_ROOT
276 The root directory being served, the one provided with the
277 .Ar d
278 parameter to
279 .Nm
280 or the root directory of the virtual host.
281 .It Ev AUTH_TYPE
282 The string "Certificate" if the client used a certificate, otherwise
283 unset.
284 .It Ev REMOTE_USER
285 The subject of the client certificate if provided, otherwise unset.
286 .It Ev TLS_CLIENT_ISSUER
287 The is the issuer of the client certificate if provided, otherwise
288 unset.
289 .It Ev TLS_CLIENT_HASH
290 The hash of the client certificate if provided, otherwise unset.
291 The format is "ALGO:HASH".
292 .El
293 .Pp
294 Let's say you have a script in
295 .Pa /cgi-bin/script
296 and the user request is
297 .Pa /cgi-bin/script/foo/bar?quux .
298 Then
299 .Ev SCRIPT_NAME
300 will be
301 .Pa cgi-bin/script ,
302 .Ev SCRIPT_EXECUTABLE
303 will be
304 .Pa $DOCUMENT_ROOT/cgi-bin/script ,
305 .Ev REQUEST_URI
306 will be
307 .Pa cgi-bin/script/foo/bar ,
308 .Ev REQUEST_RELATIVE
309 will be
310 .Pa foo/bar
311 and
312 .Ev QUERY_STRING
313 will be
314 .Ar quux .
315 .Sh EXAMPLES
316 Serve the current directory
317 .Bd -literal -offset indent
318 $ gmid .
319 .Ed
320 .Pp
321 To serve the directory
322 .Pa docs
323 and enable CGI scripts inside
324 .Pa docs/cgi ,
325 you can
326 .Bd -literal -offset indent
327 $ mkdir docs/cgi
328 $ cat <<EOF > cgi/hello
329 #!/bin/sh
330 printf "20 text/plain\\r\\n"
331 echo "hello world"
332 EOF
333 $ chmod +x docs/cgi/hello
334 $ gmid -x cgi docs
335 .Ed
336 .Pp
337 Note that the argument to the
338 .Fl x
339 option is
340 .Pa cgi
341 and not
342 .Pa docs/cgi ,
343 since it's relative to the document root.
344 .Pp
345 The following is an example of a possible configuration for a site
346 that enables only TLSv1.3, adds a mime type for the file extension
347 "rtf" and defines two virtual host:
348 .Bd -literal -offset indent
349 ipv6 on # enable ipv6
351 protocols "tlsv1.3"
353 mime "application/rtf" "rtf"
355 server "example.com" {
356 cert "/path/to/cert.pem"
357 key "/path/to/key.pem"
358 root "/var/gemini/example.com"
361 server "it.example.com" {
362 cert "/path/to/cert.pem"
363 key "/path/to/key.pem"
364 root "/var/gemini/it.example.com"
365 cgi "/cgi-bin"
366 lang "it"
368 .Ed
369 .Pp
370 Yet another example, showing how to enable a
371 .Ic chroot
372 and use
373 .Ic location
374 rule
375 .Bd -literal -offset indent
376 chroot "/var/gemini"
377 user "_gmid"
379 server "example.com" {
380 cert "/path/to/cert.pem"
381 key "/path/to/key.pem"
382 root "/var/gemini/example.com"
384 location "/static/" {
385 auto index on
386 index "index.gemini"
389 .Ed
390 .Sh ACKNOWLEDGEMENTS
391 .Nm
392 uses the
393 .Dq Flexible and Economical
394 UTF-8 decoder written by
395 .An Bjoern Hoehrmann .
396 .Sh CAVEATS
397 .Bl -bullet
398 .It
399 The root directories of all virtual hosts are opened during the daemon
400 startup; this means that if a root directory gets deleted and then
401 re-created,
402 .Nm
403 won't be able to serve files inside that directory until a restart.
404 This restriction applies only to the root directories and not their content.
405 .It
406 a %2F sequence in the path part is indistinguishable from a literal
407 slash: this is not RFC3986-compliant.
408 .It
409 a %00 sequence either in the path or in the query part is treated as
410 invalid character and thus rejected.
411 .El