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