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