Blob


1 .\" Copyright (c) 2022, 2023 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 July 24, 2023
15 .Dt GMID.CONF 5
16 .Os
17 .Sh NAME
18 .Nm gmid.conf
19 .Nd gmid Gemini server configuration file
20 .Sh DESCRIPTION
21 .Nm
22 is the configuration file format for the
23 .Xr gmid 8
24 Gemini server.
25 .Pp
26 The configuration file is divided into the following sections:
27 .Bl -tag -width Ds
28 .It Sy Macros
29 User-defined variables may be defined and used later, simplifying the
30 configuration file.
31 .It Sy Global Options
32 Global settings for
33 .Xr gmid 8 .
34 .It Sy Servers
35 Virtual hosts definition.
36 .It Sy Types
37 Media types and extensions.
38 .El
39 .Pp
40 Within the sections, empty lines are ignored and comments can be put
41 anywhere in the file using a hash mark
42 .Pq Sq #
43 and extend to the end of the current line.
44 A boolean is either the symbol
45 .Sq on
46 or
47 .Sq off .
48 A string is a sequence of characters wrapped in double quotes,
49 .Dq like this .
50 Multiple strings one next to the other are joined into a single
51 string:
52 .Bd -literal -offset indent
53 # equivalent to "temporary-failure"
54 block return 40 "temporary" "-" "failure"
55 .Ed
56 .Pp
57 Furthermore, quoting is necessary only when a string needs to contain
58 special characters
59 .Pq like spaces or punctuation ,
60 something that looks like a number or a reserved keyword.
61 The last example could have been written also as:
62 .Bd -literal -offset indent
63 block return 40 temporary "-" failure
64 .Ed
65 .Pp
66 Strict ordering of the sections is not enforced, so that is possible
67 to mix macros, options and
68 .Ic server
69 blocks.
70 However, defining all the
71 .Ic server
72 blocks after the macros and the global options is recommended.
73 .Pp
74 Newlines are often optional, except around top-level instructions, and
75 semicolons
76 .Dq \&;
77 can also be optionally used to separate options.
78 .Pp
79 Additional configuration files can be included with the
80 .Ic include
81 keyword, for example:
82 .Bd -literal -offset indent
83 include "/etc/gmid.conf.local"
84 .Ed
85 .Ss Macros
86 Macros can be defined that will later be expanded in context.
87 Macro names must start with a letter, digit or underscore and may
88 contain any of those characters.
89 Macros names may not be reserved words.
90 Macros are not expanded inside quotes.
91 .Pp
92 Two kinds of macros are supported: variable-like and proper macros.
93 When a macro is invoked with a
94 .Dq $
95 before its name its expanded as a string, whereas when it's invoked
96 with a
97 .Dq @
98 its expanded in-place.
99 .Pp
100 For example:
101 .Bd -literal -offset indent
102 ext_ip = "10.0.0.1"
103 dir = "/var/gemini"
104 certdir = "/etc/keys"
105 common = "lang it; auto index on"
107 server "foo" {
108 listen on $ext_ip
109 root $dir "/foo" # "/var/gemini/foo"
110 cert $certdir "/foo.pem" # "/etc/keys/foo.pem"
111 key $certdir "/foo.key" # "/etc/keys/foo.key"
112 @common
114 .Ed
115 .Ss Global Options
116 .Bl -tag -width 12m
117 .It Ic chroot Ar path
118 .Xr chroot 2
119 the process to the given
120 .Ar path .
121 The daemon has to be run with root privileges and thus the option
122 .Ic user
123 needs to be provided too, so privileges can be dropped afterwards.
124 All the paths in the configuration file are relative to the chroot
125 directory, except for the
126 .Ic cert ,
127 .Ic key
128 and
129 .Ic ocsp
130 paths.
131 Defaults to the
132 .Ic user
133 home directory, if provided.
134 .It Ic log Ar options
135 Specify logging options.
136 Multiple options may be provided within curly braces.
137 The available options are as follows:
138 .Bl -tag -width Ds
139 .It Ic access Ar file
140 Log the requests to
141 .Ar file .
142 The path is relative to the
143 .Ic chroot .
144 .It Ic style Ar style
145 Set the logging style, defaults to
146 .Ic legacy .
147 The
148 .Ar style
149 can be one of:
150 .Bl -tag -width Ds
151 .It Ic common
152 Attempt to be compatible with the default Apache httpd log format.
153 Each line is formatted as follows: the matching host name,
154 the remote IP address, one dash
155 .Sq - ,
156 Common Name of the client certificate
157 .Pq if provided, '-' otherwise ,
158 the timestamp of the request, the request URI wrapped in double quotes,
159 the response code and the size of the response.
160 .It Ic combined
161 Attempt to be compatible with the default nginx log format.
162 Each line is formatted as follows: the remote IP address, one dash
163 .Sq - ,
164 Common Name of the client certificate
165 .Pq if provided, '-' otherwise ,
166 the timestamp wrapped in square brackets, the request URI wrapped in
167 double quotes, the response code, the size of the response, a dash
168 wrapped in double quotes and "".
169 The strangness of these two last fields is because Gemini doesn't have
170 the notion of the
171 .Dq Referer
172 header nor the
173 .Dq User-agent .
174 .\" .It Ic condensed
175 .\" The native
176 .\" .Xr gmid 8
177 .\" format since 2.0.
178 .\" Each line is formatted as follows: RFC 3339 date time,
179 .\" remote IP address, Common Name of the client certificate
180 .\" .Pq if provided, '-' otherwise ,
181 .\" the matching host name, the request URI, the size of the request,
182 .\" the size of the response, the response code and meta.
183 .It Ic legacy
184 Each line is formatted as follows: the remote IP address and port, the
185 .Sq GET
186 keyword, the request URI, the response code and meta.
187 .El
188 .It Ic syslog Op Ic off
189 Log to syslog.
190 It is enabled by default, use the
191 .Ic off
192 argument to disable.
193 .It Ic syslog facility Ar facility
194 Log to
195 .Xr syslog 3
196 using specified
197 .Ar facility .
198 Available facilities are as follows: daemon, ftp, local0 through local7 and
199 user.
200 These are case insensitive and can be prefixed with
201 .Sq LOG_ .
202 Not all level may be available on all operating systems.
203 The default facility is
204 .Ev LOG_DAEMON .
205 .El
206 .It Ic prefork Ar number
207 Run the specified number of server processes.
208 This increases the performance and prevents delays when connecting to
209 a server.
210 .Xr gmid 8
211 runs 3 server processes by default.
212 The maximum number allowed is 16.
213 .It Ic protocols Ar string
214 Specify the TLS protocols to enable.
215 Refer to
216 .Xr tls_config_parse_protocols 3
217 for the valid protocol string values.
218 By default, both TLSv1.3 and TLSv1.2 are enabled.
219 Use
220 .Dq tlsv1.3
221 to enable only TLSv1.3.
222 .It Ic user Ar string
223 Run the daemon as the given user.
224 Mandatory if the
225 .Ic chroot
226 option is used.
227 .El
228 .Ss Servers
229 Every virtual host is defined by a
230 .Ic server
231 block:
232 .Bl -tag -width Ds
233 .It Ic server Ar hostname Brq ...
234 Match the server name using shell globbing rules.
235 It can be an explicit name,
236 .Ar www.example.com ,
237 or a name including a wildcards,
238 .Ar *.example.com .
239 .El
240 .Pp
241 Followed by a block of options that is enclosed in curly brackets:
242 .Bl -tag -width Ds
243 .It Ic alias Ar name
244 Specify an additional alias
245 .Ar name
246 for this server.
247 .It Ic auto Ic index Ar bool
248 If no index file is found, automatically generate a directory listing.
249 Disabled by default.
250 .It Ic block Op Ic return Ar code Op Ar meta
251 Send a reply and close the connection;
252 by default
253 .Ar code
254 is 40
255 and
256 .Ar meta
257 is
258 .Dq temporary failure .
259 If
260 .Ar code
261 is in the 3x range, then
262 .Ar meta
263 is mandatory.
264 Inside
265 .Ar meta ,
266 the following special sequences are supported:
267 .Bl -tag -width Ds -compact
268 .It \&%\&%
269 is replaced with a single
270 .Sq \&% .
271 .It \&%p
272 is replaced with the request path.
273 .It \&%q
274 is replaced with the query string of the request.
275 .It \&%P
276 is replaced with the server port.
277 .It \&%N
278 is replaced with the server name.
279 .El
280 .It Ic cert Ar file
281 Path to the certificate to use for this server.
282 .Ar file
283 should contain a PEM encoded certificate.
284 This option is mandatory.
285 .It Ic default type Ar string
286 Set the default media type that is used if the media type for a
287 specified extension is not found.
288 If not specified, the
289 .Ic default type
290 is set to
291 .Dq application/octet-stream .
292 .It Ic fastcgi Ar option
293 Enable FastCGI instead of serving files.
294 Multiple options may be specified within curly braces.
295 Valid options are:
296 .Bl -tag -width Ds
297 .It Ic param Ar name Cm = Ar value
298 Set the param
299 .Ar name
300 to
301 .Ar value .
302 .It Ic socket Oo Ic tcp Oc Ar socket Oo Cm port Ar port Oc
303 The
304 .Ar socket
305 can either be a UNIX-domain socket or a TCP socket.
306 If the FastCGI application is listening on a UNIX domain socket,
307 .Ar socket
308 is a local path name within the
309 .Xr chroot 2
310 root directory of
311 .Xr gmid 8 .
312 Otherwise, the
313 .Ic tcp
314 keyword must be provided and
315 .Ar socket
316 is interpreted as a hostname or an IP address.
317 .Ar port
318 can be either a port number or the name of a service enclosed in
319 double quotes.
320 If not specified defaults to 9000.
321 .El
322 .Pp
323 The FastCGI handler will be given the following variables by default:
324 .Bl -tag -width 24m
325 .It Ev GATEWAY_INTERFACE
326 .Dq CGI/1.1
327 .It Ev GEMINI_DOCUMENT_ROOT
328 The root directory of the virtual host.
329 .It Ev GEMINI_SCRIPT_FILENAME
330 Full path to the FastCGI script being executed.
331 .It Ev GEMINI_URL
332 The full IRI of the request.
333 .It Ev GEMINI_URL_PATH
334 The path of the request.
335 .It Ev GEMINI_SEARCH_STRING
336 The decoded
337 .Ev QUERY_STRING
338 if defined in the request and if it doesn't contain any unencoded
339 .Sq =
340 characters, otherwise unset.
341 .It Ev PATH_INFO
342 The portion of the requested path that is derived from the the IRI
343 path hierarchy following the part that identifies the script itself.
344 Can be unset.
345 .It Ev PATH_TRANSLATED
346 Present if and only if
347 .Ev PATH_INFO
348 is set.
349 It represent the translation of the
350 .Ev PATH_INFO .
351 .Nm gmid
352 builds this by appending the
353 .Ev PATH_INFO
354 to the virtual host directory root.
355 .It Ev QUERY_STRING
356 The URL-encoded search or parameter string.
357 .It Ev REMOTE_ADDR , Ev REMOTE_HOST
358 Textual representation of the client IP.
359 .It Ev REQUEST_METHOD
360 This is present only for RFC3875 (CGI) compliance.
361 It's always set to the empty string.
362 .It Ev SCRIPT_NAME
363 The virtual URI path to the script.
364 .It Ev SERVER_NAME
365 The name of the server
366 .It Ev SERVER_PORT
367 The port the server is listening on.
368 .It Ev SERVER_PROTOCOL
369 .Dq GEMINI
370 .It Ev SERVER_SOFTWARE
371 The name and version of the server, i.e.
372 .Dq gmid/1.8.4
373 .It Ev AUTH_TYPE
374 The string "Certificate" if the client used a certificate, otherwise
375 unset.
376 .It Ev REMOTE_USER
377 The subject of the client certificate if provided, otherwise unset.
378 .It Ev TLS_CLIENT_ISSUER
379 The is the issuer of the client certificate if provided, otherwise
380 unset.
381 .It Ev TLS_CLIENT_HASH
382 The hash of the client certificate if provided, otherwise unset.
383 The format is
384 .Dq ALGO:HASH .
385 .It Ev TLS_VERSION
386 The TLS version negotiated with the peer.
387 .It Ev TLS_CIPHER
388 The cipher suite negotiated with the peer.
389 .It Ev TLS_CIPHER_STRENGTH
390 The strength in bits for the symmetric cipher that is being used with
391 the peer.
392 .It Ev TLS_CLIENT_NOT_AFTER
393 The time corresponding to the end of the validity period of the peer
394 certificate in the ISO 8601 format
395 .Pq e.g. Dq 2021-02-07T20:17:41Z .
396 .It Ev TLS_CLIENT_NOT_BEFORE
397 The time corresponding to the start of the validity period of the peer
398 certificate in the ISO 8601 format.
399 .El
400 .It Ic fastcgi off
401 Disable FastCGI handling in the current location.
402 .It Ic index Ar string
403 Set the directory index file.
404 If not specified, it defaults to
405 .Pa index.gmi .
406 .It Ic key Ar file
407 Specify the private key to use for this server.
408 .Ar file
409 should contain a PEM encoded private key.
410 This option is mandatory.
411 .It Ic lang Ar string
412 Specify the language tag for the text/gemini content served.
413 If not specified, no
414 .Dq lang
415 parameter will be added in the response.
416 .It Ic listen on Ar address Op Ic port Ar number
417 Set the listen
418 .Ar address
419 and
420 .Ar port
421 which defaults to
422 .Sq 1965 .
423 This statement can be specified multiple times.
424 If
425 .Ar address
426 is
427 .Sq *
428 then
429 .Xr gmid 8
430 will listen on all IPv4 and IPv6 addresses.
431 .Ar 0.0.0.0
432 can be used to listen on all IPv4 addresses and
433 .Ar ::
434 on all IPv6 addresses.
435 .It Ic location Ar path Brq ...
436 Specify server configuration rules for a specific location.
437 .Ar path
438 argument will be matched against the request path with shell globbing
439 rules.
440 In case of multiple location statements in the same context, the first
441 matching location will be put into effect and the later ones ignored.
442 Therefore is advisable to match for more specific paths first and for
443 generic ones later on.
445 .Ic location
446 section may include most of the server configuration rules
447 except
448 .Ic alias , Ic cert , Ic key , Ic listen , Ic location
449 and
450 .Ic proxy .
451 .It Ic log Ar bool
452 Enable or disable the logging for the current server or location block.
453 .It Ic ocsp Ar file
454 Specify an OCSP response to be stapled during TLS handshakes
455 with this server.
456 The
457 .Ar file
458 should contain a DER-format OCSP response retrieved from an
459 OCSP server for the
460 .Ic cert
461 in use.
462 If the OCSP response in
463 .Ar file
464 is empty, OCSP stapling will not be used.
465 The default is to not use OCSP stapling.
466 .It Ic proxy Oo Cm proto Ar name Oc Oo Cm for-host Ar host Oo Cm port Ar port Oc Oc Brq ...
467 Set up a reverse proxy.
468 The optional matching rules
469 .Cm proto
470 and
471 .Cm for-host
472 can be used to enable proxying only for protocols matching
473 .Ar name
474 .Po Dq gemini
475 by default
476 .Pc
477 and/or whose request IRI matches
478 .Ar host
479 and
480 .Ar port
481 .Pq 1965 by default .
482 Matching happens using shell globbing rules.
483 .Pp
484 In case of multiple matching proxy blocks in the same context, the
485 first matching proxy will be put into effect and the later ones
486 ignored.
487 .Pp
488 Valid options are:
489 .Bl -tag -width Ds
490 .It Ic cert Ar file
491 Specify the client certificate to use when making requests.
492 .It Ic key Ar file
493 Specify the client certificate key to use when making requests.
494 .It Ic protocols Ar string
495 Specify the TLS protocols allowed when making remote requests.
496 Refer to the
497 .Xr tls_config_parse_protocols 3
498 function for the valid protocol string values.
499 By default, both TLSv1.2 and TLSv1.3 are enabled.
500 .It Ic relay-to Ar host Op Cm port Ar port
501 Relay the request to the given
502 .Ar host
503 at the given
504 .Ar port ,
505 1965 by default.
506 This is the only mandatory option in a
507 .Ic proxy
508 block.
509 .It Ic require Ic client Ic ca Ar file
510 Allow the proxying only from clients that provide a certificate
511 signed by the CA certificate in
512 .Ar file .
513 .It Ic sni Ar hostname
514 Use the given
515 .Ar hostname
516 instead of the one extracted from the
517 .Ic relay-to
518 rule for the TLS handshake with the proxied gemini server.
519 .It Ic use-tls Ar bool
520 Specify whether to use TLS when connecting to the proxied host.
521 Enabled by default.
522 .It Ic verifyname Ar bool
523 Enable or disable the TLS server name verification.
524 Enabled by default.
525 .El
526 .It Ic root Ar directory
527 Specify the root directory for this server
528 .Pq alas the current Dq document root .
529 It's relative to the chroot if enabled.
530 .It Ic require Ic client Ic ca Ar path
531 Allow requests only from clients that provide a certificate signed by
532 the CA certificate in
533 .Ar path .
534 It needs to be a PEM-encoded certificate and it's not relative to the
535 chroot.
536 .It Ic strip Ar number
537 Strip
538 .Ar number
539 components from the beginning of the path before doing a lookup in the
540 root directory.
541 It's also considered for the
542 .Ar meta
543 parameter in the scope of a
544 .Ic block return .
545 .El
546 .Ss Types
547 The
548 .Ic types
549 section must include one or more lines of the following syntax, enclosed
550 in curly brances:
551 .Bl -tag -width Ds
552 .It Ar type Ns / Ns Ar subtype Ar name Op Ar name ...
553 Set the media
554 .Ar type
555 and
556 .Ar subtype
557 to the specified extension
558 .Ar name .
559 One or more names can be specified per line.
560 Earch line may end with an optional semicolon.
561 .It Ic include Ar file
562 Include types definition from an external file, for example
563 .Pa /usr/share/misc/mime.types .
564 .El
565 .Pp
566 By default
567 .Nm gmid
568 uses the following mapping if no
569 .Ic types
570 block is defined:
571 .Pp
572 .Bl -tag -offset indent -width 15m -compact
573 .It application/pdf
574 pdf
575 .It image/gif
576 gif
577 .It image/jpeg
578 jpg jpeg
579 .It image/png
580 png
581 .It image/svg+xml
582 svg
583 .It text/gemini
584 gemini gmi
585 .It text/markdown
586 markdown md
587 .It text/x-patch
588 diff patch
589 .It text/xml
590 xml
591 .El
592 .Pp
593 As an exception,
594 .Nm gmid
595 uses the MIME type
596 .Ar text/gemini
597 for file extensions
598 .Ar gemini
599 or
600 .Ar gmi
601 if no mapping was found.
602 .Sh EXAMPLES
603 The following is an example of a possible configuration for a site
604 that enables only TLSv1.3, adds the MIME types mapping from
605 .Pa /usr/share/misc/mime.types
606 and defines two virtual host:
607 .Bd -literal -offset indent
608 protocols "tlsv1.3"
610 types {
611 include "/usr/share/misc/mime.types"
614 server "example.com" {
615 listen on * port 1965
616 cert "/etc/ssl/example.com.pem"
617 key "/etc/ssl/private/example.com.key"
618 root "/var/gemini/example.com"
621 server "example.it" {
622 listen on * port 1965
623 cert "/etc/ssl/example.it.pem"
624 key "/etc/ssl/private/example.it.key"
625 root "/var/gemini/example.it"
627 # set the language for text/gemini files
628 lang "it"
630 .Ed
631 .Pp
632 Yet another example, showing how to enable a
633 .Ic chroot
634 and use
635 .Ic location
636 rule
637 .Bd -literal -offset indent
638 chroot "/var/gemini"
639 user "_gmid"
641 server "example.com" {
642 listen on * port 1965
644 # absolute paths:
645 cert "/etc/ssl/example.com.pem"
646 key "/etc/ssl/private/example.com.key"
648 # relative to the chroot:
649 root "/example.com"
651 location "/static/*" {
652 # load the following rules only for
653 # requests that matches "/static/*"
655 auto index on
656 index "index.gemini"
659 .Ed
660 .Pp
661 This shows how to set up a reverse proxy: all request for
662 .Sq example.com
663 will be forwarded to 10.0.0.6 transparently.
664 Proxying establish a new TLS connection, so any client-certificates used
665 to connect to
666 .Xr gmid 8
667 cannot be provided to the proxied server as well.
668 .Bd -literal -offset indent
669 server "example.com" {
670 listen on * port 1965
671 cert "/etc/ssl/example.com.pem"
672 key "/etc/ssl/private/example.com.key"
673 proxy {
674 relay-to 10.0.0.6 port 1965
677 .Ed
678 .Sh SEE ALSO
679 .Xr gmid 8 ,
680 .Xr slowcgi 8
681 .Sh AUTHORS
682 .An -nosplit
683 The
684 .Nm gmid
685 program was written by
686 .An Omar Polo Aq Mt op@omarpolo.com .