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 30 2021$
15 .Dt GMID 1
16 .Os
17 .Sh NAME
18 .Nm gmid
19 .Nd simple and secure Gemini server
20 .Sh SYNOPSIS
21 .Nm
22 .Bk -words
23 .Op Fl fnv
24 .Op Fl c Ar config
25 .Op Fl P Ar pidfile
26 .Ek
27 .Nm
28 .Bk -words
29 .Op Fl 6hv
30 .Op Fl d Pa certs-dir
31 .Op Fl H Ar hostname
32 .Op Fl p Ar port
33 .Op Fl x Pa cgi
34 .Op Pa dir
35 .Ek
36 .Sh DESCRIPTION
37 .Nm
38 is a simple and minimal gemini server that can serve static files,
39 execute CGI scripts and talk to FastCGI applications.
40 It can run without a configuration file with a limited set of features
41 available.
42 .Pp
43 .Nm
44 rereads the configuration file when it receives
45 .Dv SIGHUP .
46 .Pp
47 The options are as follows:
48 .Bl -tag -width 14m
49 .It Fl c Pa config
50 Specify the configuration file.
51 .It Fl f
52 Stays and logs on the foreground.
53 .It Fl n
54 Check that the configuration is valid, but don't start the server.
55 .It Fl P Pa pidfile
56 Write
57 .Nm
58 pid to the given path.
59 .El
60 .Pp
61 If no configuration file is given,
62 .Nm
63 will look for the following options
64 .Bl -tag -width 14m
65 .It Fl 6
66 Enable IPv6.
67 .It Fl d Pa certs-path
68 Directory where certificates for the config-less mode are stored.
69 By default is
70 .Pa $XDG_DATA_HOME/gmid ,
71 i.e.
72 .Pa ~/.local/share/gmid .
73 .It Fl H Ar hostname
74 The hostname, by default
75 .Ar localhost .
76 Certificates for the given
77 .Ar hostname
78 are searched inside the
79 .Pa certs-dir
80 directory given with the
81 .Fl d
82 option.
83 They have the form
84 .Pa hostname.cert.pem
85 and
86 .Pa hostname.key.pem .
87 If a certificate or key don't exists for a given hostname they
88 will be automatically generated.
89 .It Fl h
90 Print the usage and exit.
91 .It Fl p Ar port
92 The port to listen on, by default 1965.
93 .It Fl v
94 Verbose mode.
95 Multiple
96 .Fl v
97 options increase the verbosity.
98 .It Fl x Pa path
99 Enable execution of CGI scripts.
100 See the description of the
101 .Ic cgi
102 option in the section
103 .Sq Servers
104 below to learn how
105 .Pa path
106 is processed.
107 Cannot be provided more than once.
108 .It Pa dir
109 The root directory to serve.
110 By default the current working directory is assumed.
111 .El
112 .Sh CONFIGURATION FILE
113 The configuration file is divided into two sections:
114 .Bl -tag -width xxxx
115 .It Sy Global Options
116 Global settings for
117 .Nm .
118 .It Sy Servers
119 Virtual hosts definition.
120 .El
121 .Pp
122 Within the sections, empty lines are ignored and comments can be put
123 anywhere in the file using a hash mark
124 .Pq Sq # ,
125 and extend to the end of the current line.
126 A boolean is either the symbol
127 .Sq on
128 or
129 .Sq off .
130 A string is a sequence of characters wrapped in double quotes,
131 .Dq like this .
132 .Ss Global Options
133 .Bl -tag -width 12m
134 .It Ic chroot Pa path
135 .Xr chroot 2
136 the process to the given
137 .Pa path .
138 The daemon has to be run with root privileges and thus the option
139 .Ic user
140 needs to be provided, so privileges can be dropped.
141 Note that
142 .Nm
143 will enter the chroot after loading the TLS keys, but before opening
144 the virtual host root directories.
145 It's recommended to keep the TLS keys outside the chroot.
146 Future version of
147 .Nm
148 may enforce this.
149 .It Ic ipv6 Ar bool
150 Enable or disable IPv6 support.
151 By default is off.
152 .It Ic mime Ar mime-type Ar file-extension
153 Add a mapping for the given
154 .Ar file-extension
155 to the given
156 .Ar mime-type .
157 Both argument are strings.
158 .It Ic port Ar portno
159 The port to listen on.
160 By default is 1965.
161 .It Ic prefork Ar number
162 Run the specified number of server processes.
163 This increases the performance and prevents delays when connecting to
164 a server.
165 .Nm
166 runs 3 server processes by default, when not in config-less mode.
167 The maximum number allowed is 16.
168 .It Ic protocols Ar string
169 Specify the TLS protocols to enable.
170 Refer to
171 .Xr tls_config_parse_protocols 3
172 for the valid protocol string values.
173 By default, both TLSv1.3 and TLSv1.2 are enabled.
174 Use
175 .Dq tlsv1.3
176 to enable only TLSv1.3.
177 .It Ic user Ar string
178 Run the daemon as the given user.
179 .El
180 .Ss Servers
181 Every virtual host is defined by a
182 .Ic server
183 block:
184 .Bl -tag -width Ds
185 .It Ic server Ar hostname Brq ...
186 Match the server name using shell globbing rules.
187 This can be an explicit name,
188 .Ar www.example.com ,
189 or a name including a wildcards,
190 .Ar *.example.com .
191 .El
192 .Pp
193 Followed by a block of options that is enclosed in curly brackets:
194 .Bl -tag -width Ds
195 .It Ic alias Ar name
196 Specify an additional alias
197 .Ar name
198 for this server.
199 .It Ic auto Ic index Ar bool
200 If no index file is found, automatically generate a directory listing.
201 It's disabled by default.
202 .It Ic block Op Ic return Ar code Op Ar meta
203 Send a reply and close the connection;
204 .Ar code
205 is 40
206 and
207 .Ar meta
208 is
209 .Dq temporary failure
210 by default.
211 If
212 .Ar code
213 is in the 3x range, then
214 .Ar meta
215 must be provided.
216 Inside
217 .Ar meta ,
218 the following special sequences are replaced:
219 .Bl -tag -width Ds -compact
220 .It \&%\&%
221 is replaced with a single
222 .Sq \&% .
223 .It \&%p
224 is replaced with the request path.
225 .It \&%q
226 is replaced with the query string of the request.
227 .It \&%P
228 is replaced with the server port.
229 .It \&%N
230 is replaced with the server name.
231 .El
232 .It Ic cert Pa file
233 Path to the certificate to use for this server.
234 The
235 .Pa file
236 should contain a PEM encoded certificate.
237 This option is mandatory.
238 .It Ic cgi Pa path
239 Execute CGI scripts that matches
240 .Pa path
241 using shell globbing rules.
242 .It Ic default type Ar string
243 Set the default media type that is used if the media type for a
244 specified extension is not found.
245 If not specified, the
246 .Ic default type
247 is set to
248 .Dq application/octet-stream .
249 .It Ic entrypoint Pa path
250 Handle all the requests for the current virtual host using the
251 CGI script at
252 .Pa path .
253 .It Ic env Ar name Ar value
254 Set the environment variable
255 .Ar name
256 to
257 .Ar value
258 when executing CGI scripts.
259 Can be provided more than once.
260 .\" don't document the "spawn <prog>" form because it probably won't
261 .\" be kept.
262 .It Ic fastcgi Oo Ic tcp Oc Pa socket Oo Ar port Oc
263 Enable FastCGI instead of serving files.
264 The
265 .Pa socket
266 can either be a UNIX domain socket or a TCP socket.
267 If the FastCGI application is listening on a UNIX domain socket,
268 .Pa socket
269 is a local path name within the
270 .Xr chroot 2
271 root directory of
272 .Nm .
273 Otherwise, the
274 .Ic tcp
275 keyword must be provided and
276 .Pa socket
277 is interpreted as a hostname or an IP address.
278 .Ar port
279 can be either a port number or the name of a service enclosed in
280 double quotes.
281 If it's not specified defaults to 9000.
282 .It Ic index Ar string
283 Set the directory index file.
284 If not specified, it defaults to
285 .Pa index.gmi .
286 .It Ic key Pa file
287 Specify the private key to use for this server.
288 The
289 .Pa file
290 should contain a PEM encoded private key.
291 This option is mandatory.
292 .It Ic lang Ar string
293 Specify the language tag for the text/gemini content served.
294 If not specified, no
295 .Dq lang
296 parameter will be added in the response.
297 .It Ic location Pa path Brq ...
298 Specify server configuration rules for a specific location.
299 The
300 .Pa path
301 argument will be matched against the request path with shell globbing
302 rules.
303 In case of multiple location statements in the same context, the first
304 matching location will be put into effect and the later ones ignored.
305 Therefore is advisable to match for more specific paths first and for
306 generic ones later on.
308 .Ic location
309 section may include most of the server configuration rules
310 except
311 .Ic alias , Ic cert , Ic env , Ic key , Ic location ,
312 .Ic entrypoint No and Ic cgi .
313 .It Ic param Ar name Ar value
314 Set the param
315 .Ar name
316 to
317 .Ar value
318 for FastCGI.
319 .It Ic root Pa directory
320 Specify the root directory for this server.
321 It's relative to the chroot, if enabled.
322 .It Ic require Ic client Ic ca Pa path
323 Allow requests only from clients that provide a certificate signed by
324 the CA certificate in
325 .Pa path .
326 It needs to be a PEM-encoded certificate and it's not relative to the
327 chroot.
328 .It Ic strip Ar number
329 Strip
330 .Ar number
331 components from the beginning of the path before doing a lookup in the
332 root directory.
333 It's also considered for the
334 .Ar meta
335 parameter in the scope of a
336 .Ic block return .
337 .El
338 .Sh CGI
339 When a request for an executable file matches the
340 .Ic cgi
341 rule, that file will be execute and its output fed to the client.
342 .Pp
343 The CGI scripts are executed in the directory they reside and inherit
344 the environment from
345 .Nm
346 with these additional variables set:
347 .Bl -tag -width 24m
348 .It Ev GATEWAY_INTERFACE
349 .Dq CGI/1.1
350 .It Ev GEMINI_DOCUMENT_ROOT
351 The root directory of the virtual host.
352 .It Ev GEMINI_SCRIPT_FILENAME
353 Full path to the CGI script being executed.
354 .It Ev GEMINI_URL
355 The full IRI of the request.
356 .It Ev GEMINI_URL_PATH
357 The path of the request.
358 .It Ev PATH_INFO
359 The portion of the requested path that is derived from the the IRI
360 path hierarchy following the part that identifies the script itself.
361 Can be unset.
362 .It Ev PATH_TRANSLATED
363 Present if and only if
364 .Ev PATH_INFO
365 is set.
366 It represent the translation of the
367 .Ev PATH_INFO .
368 .Nm
369 builds this by appending the
370 .Ev PATH_INFO
371 to the virtual host directory root.
372 .It Ev QUERY_STRING
373 The decoded query string.
374 .It Ev REMOTE_ADDR , Ev REMOTE_HOST
375 Textual representation of the client IP.
376 .It Ev REQUEST_METHOD
377 This is present only for RFC3875 (CGI) compliance.
378 It's always set to the empty string.
379 .It Ev SCRIPT_NAME
380 The part of the
381 .Ev GEMINI_URL_PATH
382 that identifies the current CGI script.
383 .It Ev SERVER_NAME
384 The name of the server
385 .It Ev SERVER_PORT
386 The port the server is listening on.
387 .It Ev SERVER_PROTOCOL
388 .Dq GEMINI
389 .It Ev SERVER_SOFTWARE
390 The name and version of the server, i.e.
391 .Dq gmid/1.5
392 .It Ev AUTH_TYPE
393 The string "Certificate" if the client used a certificate, otherwise
394 unset.
395 .It Ev REMOTE_USER
396 The subject of the client certificate if provided, otherwise unset.
397 .It Ev TLS_CLIENT_ISSUER
398 The is the issuer of the client certificate if provided, otherwise
399 unset.
400 .It Ev TLS_CLIENT_HASH
401 The hash of the client certificate if provided, otherwise unset.
402 The format is
403 .Dq ALGO:HASH .
404 .It Ev TLS_VERSION
405 The TLS version negotiated with the peer.
406 .It Ev TLS_CIPHER
407 The cipher suite negotiated with the peer.
408 .It Ev TLS_CIPHER_STRENGTH
409 The strength in bits for the symmetric cipher that is being used with
410 the peer.
411 .It Ev TLS_CLIENT_NOT_AFTER
412 The time corresponding to the end of the validity period of the peer
413 certificate in the ISO 8601 format
414 .Pq e.g. Dq 2021-02-07T20:17:41Z .
415 .It Ev TLS_CLIENT_NOT_BEFORE
416 The time corresponding to the start of the validity period of the peer
417 certificate in the ISO 8601 format.
418 .El
419 .Sh FastCGI
420 .Nm
421 optionally supports FastCGI.
423 .Ic fastcgi
424 rule must be present in a server or location block.
425 Then, all requests matching that server or location will be handled
426 via the specified FastCGI backend.
427 .Pp
428 By default the following variables
429 .Pq parameters
430 are sent, and carry the same semantics as with CGI.
431 More parameters can be added with the
432 .Ic param
433 option.
434 .Bl -bullet -compact
435 .It
436 GATEWAY_INTERFACE
437 .It
438 GEMINI_URL_PATH
439 .It
440 QUERY_STRING
441 .It
442 REMOTE_ADDR
443 .It
444 REMOTE_HOST
445 .It
446 REQUEST_METHOD
447 .It
448 SERVER_NAME
449 .It
450 SERVER_PROTOCOL
451 .It
452 SERVER_SOFTWARE
453 .It
454 AUTH_TYPE
455 .It
456 REMOTE_USER
457 .It
458 TLS_CLIENT_ISSUER
459 .It
460 TLS_CLIENT_HASH
461 .It
462 TLS_VERSION
463 .It
464 TLS_CIPHER
465 .It
466 TLS_CIPHER_STRENGTH
467 .It
468 TLS_CLIENT_NOT_BEFORE
469 .It
470 TLS_CLIENT_NOT_AFTER
471 .El
472 .Sh MIME
473 To auto-detect the MIME type of the response
474 .Nm
475 looks at the file extension and consults its internal table.
476 By default the following mappings are loaded, but they can be
477 overridden or extended using the
478 .Ic mime
479 configuration option.
480 If no MIME is found, the value of
481 .Ic default type
482 matching the file
483 .Ic location
484 will be used, which is
485 .Dq application/octet-stream
486 by default.
487 .Pp
488 .Bl -tag -offset indent -width 14m -compact
489 .It diff
490 text/x-patch
491 .It gemini, gmi
492 text/gemini
493 .It gif
494 image/gif
495 .It jpeg
496 image/jpeg
497 .It jpg
498 image/jpeg
499 .It markdown, md
500 text/markdown
501 .It patch
502 text/x-patch
503 .It pdf
504 application/pdf
505 .It png
506 image/png
507 .It svg
508 image/svg+xml
509 .It txt
510 text/plain
511 .It xml
512 text/xml
513 .El
514 .Sh EXAMPLES
515 Serve the current directory
516 .Bd -literal -offset indent
517 $ gmid .
518 .Ed
519 .Pp
520 To serve the directory
521 .Pa docs
522 and enable CGI scripts inside
523 .Pa docs/cgi ,
524 you can
525 .Bd -literal -offset indent
526 $ mkdir docs/cgi
527 $ cat <<EOF > docs/cgi/hello
528 #!/bin/sh
529 printf "20 text/plain\\r\\n"
530 echo "hello world"
531 EOF
532 $ chmod +x docs/cgi/hello
533 $ gmid -x '/cgi/*' docs
534 .Ed
535 .Pp
536 The following is an example of a possible configuration for a site
537 that enables only TLSv1.3, adds a mime type for the file extension
538 "rtf" and defines two virtual host:
539 .Bd -literal -offset indent
540 ipv6 on # enable ipv6
542 protocols "tlsv1.3"
544 mime "application/rtf" "rtf"
546 server "example.com" {
547 cert "/path/to/cert.pem"
548 key "/path/to/key.pem"
549 root "/var/gemini/example.com"
552 server "it.example.com" {
553 cert "/path/to/cert.pem"
554 key "/path/to/key.pem"
555 root "/var/gemini/it.example.com"
556 cgi "/cgi-bin/*"
557 lang "it"
559 .Ed
560 .Pp
561 Yet another example, showing how to enable a
562 .Ic chroot
563 and use
564 .Ic location
565 rule
566 .Bd -literal -offset indent
567 chroot "/var/gemini"
568 user "_gmid"
570 server "example.com" {
571 cert "/path/to/cert.pem"
572 key "/path/to/key.pem"
573 root "/example.com" # in the /var/gemini chroot
575 location "/static/*" {
576 auto index on
577 index "index.gemini"
580 .Ed
581 .Sh ACKNOWLEDGEMENTS
582 .Nm
583 uses the
584 .Dq Flexible and Economical
585 UTF-8 decoder written by
586 .An Bjoern Hoehrmann .
587 .Sh AUTHORS
588 .An -nosplit
589 The
590 .Nm
591 program was written by
592 .An Omar Polo Aq Mt op@omarpolo.com .
593 .Sh CAVEATS
594 .Bl -bullet
595 .It
596 The root directories of all virtual hosts are opened during the daemon
597 startup; this means that if a root directory gets deleted and then
598 re-created,
599 .Nm
600 won't be able to serve files inside that directory until a restart.
601 This restriction applies only to the root directories and not their content.
602 .It
603 a %2F sequence is indistinguishable from a literal slash: this is not
604 RFC3986-compliant.
605 .It
606 a %00 sequence is treated as invalid character and thus rejected.
607 .El