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 August 18, 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 .It Ic strip Ar number
322 Strip
323 .Ar number
324 leading path components from the
325 .El
326 .Pp
327 The FastCGI handler will be given the following variables by default:
328 .Bl -tag -width 24m
329 .\" .It Ev GEMINI_DOCUMENT_ROOT
330 .\" The root directory of the virtual host.
331 .It Ev GEMINI_URL_PATH
332 Full path of the request.
333 .It Ev GEMINI_SEARCH_STRING
334 The decoded
335 .Ev QUERY_STRING
336 if defined in the request and if it doesn't contain any unencoded
337 .Sq =
338 characters, otherwise unset.
339 .It Ev GATEWAY_INTERFACE
340 .Dq CGI/1.1
341 .It Ev AUTH_TYPE
342 The string "Certificate" if the client used a certificate, otherwise
343 unset.
344 .It Ev PATH_INFO
345 The portion of the requested path that is derived from the the IRI
346 path hierarchy following
347 .Ev SCRIPT_NAME .
348 Can be unset.
349 .It Ev PATH_TRANSLATED
350 Present if and only if
351 .Ev PATH_INFO
352 is set.
353 It represent the translation of the
354 .Ev PATH_INFO .
355 .Nm gmid
356 builds this by appending the
357 .Ev PATH_INFO
358 to the virtual host directory root.
359 .It Ev QUERY_STRING
360 The URL-encoded search or parameter string.
361 .It Ev REMOTE_ADDR , Ev REMOTE_HOST
362 Textual representation of the client IP.
363 .It Ev REQUEST_METHOD
364 This is present only for RFC3875 (CGI) compliance.
365 It's always set to
366 .Dq GET .
367 .It Ev SCRIPT_NAME
368 The virtual URI path to the script.
369 Since it's impossible to determine in all cases the correct
370 .Ev SCRIPT_NAME
371 programmatically
372 .Nm gmid
373 assumes it's the empty string.
374 It is recommended to manually specify this parameter when serving a
375 sub-tree of a virtual host via FastCGI.
376 .It Ev SERVER_NAME
377 The name of the server
378 .It Ev SERVER_PORT
379 The port the server is listening on.
380 .It Ev SERVER_PROTOCOL
381 .Dq GEMINI
382 .It Ev SERVER_SOFTWARE
383 The name and version of the server, i.e.
384 .Dq gmid/1.8.4
385 .It Ev REMOTE_USER
386 The subject of the client certificate if provided, otherwise unset.
387 .It Ev TLS_CLIENT_ISSUER
388 The is the issuer of the client certificate if provided, otherwise
389 unset.
390 .It Ev TLS_CLIENT_HASH
391 The hash of the client certificate if provided, otherwise unset.
392 The format is
393 .Dq ALGO:HASH .
394 .It Ev TLS_VERSION
395 The TLS version negotiated with the peer.
396 .It Ev TLS_CIPHER
397 The cipher suite negotiated with the peer.
398 .It Ev TLS_CIPHER_STRENGTH
399 The strength in bits for the symmetric cipher that is being used with
400 the peer.
401 .It Ev TLS_CLIENT_NOT_AFTER
402 The time corresponding to the end of the validity period of the peer
403 certificate in the ISO 8601 format
404 .Pq e.g. Dq 2021-02-07T20:17:41Z .
405 .It Ev TLS_CLIENT_NOT_BEFORE
406 The time corresponding to the start of the validity period of the peer
407 certificate in the ISO 8601 format.
408 .El
409 .It Ic fastcgi off
410 Disable FastCGI handling in the current location.
411 .It Ic index Ar string
412 Set the directory index file.
413 If not specified, it defaults to
414 .Pa index.gmi .
415 .It Ic key Ar file
416 Specify the private key to use for this server.
417 .Ar file
418 should contain a PEM encoded private key.
419 This option is mandatory.
420 .It Ic lang Ar string
421 Specify the language tag for the text/gemini content served.
422 If not specified, no
423 .Dq lang
424 parameter will be added in the response.
425 .It Ic listen on Ar address Op Ic port Ar number
426 Set the listen
427 .Ar address
428 and
429 .Ar port
430 which defaults to
431 .Sq 1965 .
432 This statement can be specified multiple times.
433 If
434 .Ar address
435 is
436 .Sq *
437 then
438 .Xr gmid 8
439 will listen on all IPv4 and IPv6 addresses.
440 .Ar 0.0.0.0
441 can be used to listen on all IPv4 addresses and
442 .Ar ::
443 on all IPv6 addresses.
444 .It Ic location Ar path Brq ...
445 Specify server configuration rules for a specific location.
446 .Ar path
447 argument will be matched against the request path with shell globbing
448 rules.
449 In case of multiple location statements in the same context, the first
450 matching location will be put into effect and the later ones ignored.
451 Therefore is advisable to match for more specific paths first and for
452 generic ones later on.
454 .Ic location
455 section may include most of the server configuration rules
456 except
457 .Ic alias , Ic cert , Ic key , Ic listen , Ic location
458 and
459 .Ic proxy .
460 .It Ic log Ar bool
461 Enable or disable the logging for the current server or location block.
462 .It Ic ocsp Ar file
463 Specify an OCSP response to be stapled during TLS handshakes
464 with this server.
465 The
466 .Ar file
467 should contain a DER-format OCSP response retrieved from an
468 OCSP server for the
469 .Ic cert
470 in use.
471 If the OCSP response in
472 .Ar file
473 is empty, OCSP stapling will not be used.
474 The default is to not use OCSP stapling.
475 .It Ic proxy Oo Cm proto Ar name Oc Oo Cm for-host Ar host Oo Cm port Ar port Oc Oc Brq ...
476 Set up a reverse proxy.
477 The optional matching rules
478 .Cm proto
479 and
480 .Cm for-host
481 can be used to enable proxying only for protocols matching
482 .Ar name
483 .Po Dq gemini
484 by default
485 .Pc
486 and/or whose request IRI matches
487 .Ar host
488 and
489 .Ar port
490 .Pq 1965 by default .
491 Matching happens using shell globbing rules.
492 .Pp
493 In case of multiple matching proxy blocks in the same context, the
494 first matching proxy will be put into effect and the later ones
495 ignored.
496 .Pp
497 Valid options are:
498 .Bl -tag -width Ds
499 .It Ic cert Ar file
500 Specify the client certificate to use when making requests.
501 .It Ic key Ar file
502 Specify the client certificate key to use when making requests.
503 .It Ic protocols Ar string
504 Specify the TLS protocols allowed when making remote requests.
505 Refer to the
506 .Xr tls_config_parse_protocols 3
507 function for the valid protocol string values.
508 By default, both TLSv1.2 and TLSv1.3 are enabled.
509 .It Ic relay-to Ar host Op Cm port Ar port
510 Relay the request to the given
511 .Ar host
512 at the given
513 .Ar port ,
514 1965 by default.
515 This is the only mandatory option in a
516 .Ic proxy
517 block.
518 .It Ic require Ic client Ic ca Ar file
519 Allow the proxying only from clients that provide a certificate
520 signed by the CA certificate in
521 .Ar file .
522 .It Ic sni Ar hostname
523 Use the given
524 .Ar hostname
525 instead of the one extracted from the
526 .Ic relay-to
527 rule for the TLS handshake with the proxied gemini server.
528 .It Ic use-tls Ar bool
529 Specify whether to use TLS when connecting to the proxied host.
530 Enabled by default.
531 .It Ic verifyname Ar bool
532 Enable or disable the TLS server name verification.
533 Enabled by default.
534 .El
535 .It Ic root Ar directory
536 Specify the root directory for this server
537 .Pq alas the current Dq document root .
538 It's relative to the chroot if enabled.
539 .It Ic require Ic client Ic ca Ar path
540 Allow requests only from clients that provide a certificate signed by
541 the CA certificate in
542 .Ar path .
543 It needs to be a PEM-encoded certificate and it's not relative to the
544 chroot.
545 .It Ic strip Ar number
546 Strip
547 .Ar number
548 components from the beginning of the path before doing a lookup in the
549 root directory.
550 It's also considered for the
551 .Ar meta
552 parameter in the scope of a
553 .Ic block return .
554 .El
555 .Ss Types
556 The
557 .Ic types
558 section must include one or more lines of the following syntax, enclosed
559 in curly brances:
560 .Bl -tag -width Ds
561 .It Ar type Ns / Ns Ar subtype Ar name Op Ar name ...
562 Set the media
563 .Ar type
564 and
565 .Ar subtype
566 to the specified extension
567 .Ar name .
568 One or more names can be specified per line.
569 Earch line may end with an optional semicolon.
570 .It Ic include Ar file
571 Include types definition from an external file, for example
572 .Pa /usr/share/misc/mime.types .
573 .El
574 .Pp
575 By default
576 .Nm gmid
577 uses the following mapping if no
578 .Ic types
579 block is defined:
580 .Pp
581 .Bl -tag -offset indent -width 15m -compact
582 .It application/pdf
583 pdf
584 .It image/gif
585 gif
586 .It image/jpeg
587 jpg jpeg
588 .It image/png
589 png
590 .It image/svg+xml
591 svg
592 .It text/gemini
593 gemini gmi
594 .It text/markdown
595 markdown md
596 .It text/x-patch
597 diff patch
598 .It text/xml
599 xml
600 .El
601 .Pp
602 As an exception,
603 .Nm gmid
604 uses the MIME type
605 .Ar text/gemini
606 for file extensions
607 .Ar gemini
608 or
609 .Ar gmi
610 if no mapping was found.
611 .Sh EXAMPLES
612 The following is an example of a possible configuration for a site
613 that enables only TLSv1.3, adds the MIME types mapping from
614 .Pa /usr/share/misc/mime.types
615 and defines two virtual host:
616 .Bd -literal -offset indent
617 protocols "tlsv1.3"
619 types {
620 include "/usr/share/misc/mime.types"
623 server "example.com" {
624 listen on * port 1965
625 cert "/etc/ssl/example.com.pem"
626 key "/etc/ssl/private/example.com.key"
627 root "/var/gemini/example.com"
630 server "example.it" {
631 listen on * port 1965
632 cert "/etc/ssl/example.it.pem"
633 key "/etc/ssl/private/example.it.key"
634 root "/var/gemini/example.it"
636 # set the language for text/gemini files
637 lang "it"
639 .Ed
640 .Pp
641 Yet another example, showing how to enable a
642 .Ic chroot
643 and use
644 .Ic location
645 rule
646 .Bd -literal -offset indent
647 chroot "/var/gemini"
648 user "_gmid"
650 server "example.com" {
651 listen on * port 1965
653 # absolute paths:
654 cert "/etc/ssl/example.com.pem"
655 key "/etc/ssl/private/example.com.key"
657 # relative to the chroot:
658 root "/example.com"
660 location "/static/*" {
661 # load the following rules only for
662 # requests that matches "/static/*"
664 auto index on
665 index "index.gemini"
668 .Ed
669 .Pp
670 This shows how to set up a reverse proxy: all request for
671 .Sq example.com
672 will be forwarded to 10.0.0.6 transparently.
673 Proxying establish a new TLS connection, so any client-certificates used
674 to connect to
675 .Xr gmid 8
676 cannot be provided to the proxied server as well.
677 .Bd -literal -offset indent
678 server "example.com" {
679 listen on * port 1965
680 cert "/etc/ssl/example.com.pem"
681 key "/etc/ssl/private/example.com.key"
682 proxy {
683 relay-to 10.0.0.6 port 1965
686 .Ed
687 .Sh SEE ALSO
688 .Xr gmid 8 ,
689 .Xr slowcgi 8
690 .Sh AUTHORS
691 .An -nosplit
692 The
693 .Nm gmid
694 program was written by
695 .An Omar Polo Aq Mt op@omarpolo.com .