Blame


1 1595c277 2022-04-07 op .\" Copyright (c) 2022 Omar Polo <op@omarpolo.com>
2 1595c277 2022-04-07 op .\"
3 1595c277 2022-04-07 op .\" Permission to use, copy, modify, and distribute this software for any
4 1595c277 2022-04-07 op .\" purpose with or without fee is hereby granted, provided that the above
5 1595c277 2022-04-07 op .\" copyright notice and this permission notice appear in all copies.
6 1595c277 2022-04-07 op .\"
7 1595c277 2022-04-07 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 1595c277 2022-04-07 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 1595c277 2022-04-07 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 1595c277 2022-04-07 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 1595c277 2022-04-07 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 1595c277 2022-04-07 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 1595c277 2022-04-07 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 9b15e4c6 2022-09-08 op .Dd September 8, 2022
15 1595c277 2022-04-07 op .Dt GMID.CONF 5
16 1595c277 2022-04-07 op .Os
17 1595c277 2022-04-07 op .Sh NAME
18 1595c277 2022-04-07 op .Nm gmid.conf
19 1595c277 2022-04-07 op .Nd gmid Gemini server configuration file
20 1595c277 2022-04-07 op .Sh DESCRIPTION
21 1595c277 2022-04-07 op .Nm
22 1595c277 2022-04-07 op is the configuration file format for the
23 9b15e4c6 2022-09-08 op .Xr gmid 8
24 1595c277 2022-04-07 op Gemini server.
25 1595c277 2022-04-07 op .Pp
26 1595c277 2022-04-07 op The configuration file is divided into three sections:
27 1595c277 2022-04-07 op .Bl -tag -width xxxx
28 1595c277 2022-04-07 op .It Sy Macros
29 1595c277 2022-04-07 op User-defined variables may be defined and used later, simplifying the
30 1595c277 2022-04-07 op configuration file.
31 1595c277 2022-04-07 op .It Sy Global Options
32 1595c277 2022-04-07 op Global settings for
33 1595c277 2022-04-07 op .Nm .
34 1595c277 2022-04-07 op .It Sy Servers
35 1595c277 2022-04-07 op Virtual hosts definition.
36 1595c277 2022-04-07 op .It Sy Types
37 1595c277 2022-04-07 op Media types and extensions.
38 1595c277 2022-04-07 op .El
39 1595c277 2022-04-07 op .Pp
40 1595c277 2022-04-07 op Within the sections, empty lines are ignored and comments can be put
41 1595c277 2022-04-07 op anywhere in the file using a hash mark
42 1595c277 2022-04-07 op .Pq Sq # ,
43 1595c277 2022-04-07 op and extend to the end of the current line.
44 1595c277 2022-04-07 op A boolean is either the symbol
45 1595c277 2022-04-07 op .Sq on
46 1595c277 2022-04-07 op or
47 1595c277 2022-04-07 op .Sq off .
48 1595c277 2022-04-07 op A string is a sequence of characters wrapped in double quotes,
49 1595c277 2022-04-07 op .Dq like this .
50 1595c277 2022-04-07 op Multiple strings one next to the other are joined into a single
51 1595c277 2022-04-07 op string:
52 1595c277 2022-04-07 op .Bd -literal -offset indent
53 1595c277 2022-04-07 op # equivalent to "temporary-failure"
54 1595c277 2022-04-07 op block return 40 "temporary" "-" "failure"
55 1595c277 2022-04-07 op .Ed
56 1595c277 2022-04-07 op .Pp
57 1595c277 2022-04-07 op Furthermore, quoting is necessary only when a string needs to contain
58 1595c277 2022-04-07 op special characters
59 1595c277 2022-04-07 op .Pq like spaces or punctuation ,
60 1595c277 2022-04-07 op something that looks like a number or a reserved keyword.
61 1595c277 2022-04-07 op The last example could have been written also as:
62 1595c277 2022-04-07 op .Bd -literal -offset indent
63 1595c277 2022-04-07 op block return 40 temporary "-" failure
64 1595c277 2022-04-07 op .Ed
65 1595c277 2022-04-07 op .Pp
66 1595c277 2022-04-07 op Strict ordering of the sections is not enforced, so that is possible
67 1595c277 2022-04-07 op to mix macros, options and
68 1595c277 2022-04-07 op .Ic server
69 1595c277 2022-04-07 op blocks.
70 1595c277 2022-04-07 op However, defining all the
71 1595c277 2022-04-07 op .Ic server
72 1595c277 2022-04-07 op blocks after the macros and the global options is recommended.
73 1595c277 2022-04-07 op .Pp
74 1595c277 2022-04-07 op Newlines are often optional, except around top-level instructions, and
75 1595c277 2022-04-07 op semicolons
76 1595c277 2022-04-07 op .Dq \&;
77 1595c277 2022-04-07 op can also be optionally used to separate options.
78 1595c277 2022-04-07 op .Pp
79 1595c277 2022-04-07 op Additional configuration files can be included with the
80 1595c277 2022-04-07 op .Ic include
81 1595c277 2022-04-07 op keyword, for example:
82 1595c277 2022-04-07 op .Bd -literal -offset indent
83 1595c277 2022-04-07 op include "/etc/gmid.conf.local"
84 1595c277 2022-04-07 op .Ed
85 1595c277 2022-04-07 op .Ss Macros
86 1595c277 2022-04-07 op Macros can be defined that will later be expanded in context.
87 1595c277 2022-04-07 op Macro names must start with a letter, digit or underscore and may
88 1595c277 2022-04-07 op contain any of those characters.
89 1595c277 2022-04-07 op Macros names may not be reserved words.
90 1595c277 2022-04-07 op Macros are not expanded inside quotes.
91 1595c277 2022-04-07 op .Pp
92 1595c277 2022-04-07 op Two kinds of macros are supported: variable-like and proper macros.
93 1595c277 2022-04-07 op When a macro is invoked with a
94 1595c277 2022-04-07 op .Dq $
95 1595c277 2022-04-07 op before its name its expanded as a string, whereas when it's invoked
96 1595c277 2022-04-07 op with a
97 1595c277 2022-04-07 op .Dq @
98 1595c277 2022-04-07 op its expanded in-place.
99 1595c277 2022-04-07 op .Pp
100 1595c277 2022-04-07 op For example:
101 1595c277 2022-04-07 op .Bd -literal -offset indent
102 1595c277 2022-04-07 op dir = "/var/gemini"
103 1595c277 2022-04-07 op certdir = "/etc/keys"
104 1595c277 2022-04-07 op common = "lang it; auto index on"
105 1595c277 2022-04-07 op
106 1595c277 2022-04-07 op server "foo" {
107 1595c277 2022-04-07 op root $dir "/foo" # -> /var/gemini/foo
108 1595c277 2022-04-07 op cert $certdir "/foo.pem" # -> /etc/keys/foo.pem
109 1595c277 2022-04-07 op key $certdir "/foo.key" # -> /etc/keys/foo.key
110 1595c277 2022-04-07 op @common
111 1595c277 2022-04-07 op }
112 1595c277 2022-04-07 op .Ed
113 1595c277 2022-04-07 op .Ss Global Options
114 1595c277 2022-04-07 op .Bl -tag -width 12m
115 1595c277 2022-04-07 op .It Ic chroot Ar path
116 1595c277 2022-04-07 op .Xr chroot 2
117 1595c277 2022-04-07 op the process to the given
118 1595c277 2022-04-07 op .Ar path .
119 1595c277 2022-04-07 op The daemon has to be run with root privileges and thus the option
120 1595c277 2022-04-07 op .Ic user
121 1595c277 2022-04-07 op needs to be provided, so privileges can be dropped.
122 1595c277 2022-04-07 op Note that
123 1595c277 2022-04-07 op .Nm
124 1595c277 2022-04-07 op will enter the chroot after loading the TLS keys, but before opening
125 1595c277 2022-04-07 op the virtual host root directories.
126 1595c277 2022-04-07 op It's recommended to keep the TLS keys outside the chroot.
127 1595c277 2022-04-07 op Future version of
128 1595c277 2022-04-07 op .Nm
129 1595c277 2022-04-07 op may enforce this.
130 1595c277 2022-04-07 op .It Ic ipv6 Ar bool
131 1595c277 2022-04-07 op Enable or disable IPv6 support, off by default.
132 1595c277 2022-04-07 op .It Ic port Ar portno
133 1595c277 2022-04-07 op The port to listen on.
134 1595c277 2022-04-07 op 1965 by default.
135 1595c277 2022-04-07 op .It Ic prefork Ar number
136 1595c277 2022-04-07 op Run the specified number of server processes.
137 1595c277 2022-04-07 op This increases the performance and prevents delays when connecting to
138 1595c277 2022-04-07 op a server.
139 1595c277 2022-04-07 op When not in config-less mode,
140 1595c277 2022-04-07 op .Nm
141 1595c277 2022-04-07 op runs 3 server processes by default.
142 1595c277 2022-04-07 op The maximum number allowed is 16.
143 1595c277 2022-04-07 op .It Ic protocols Ar string
144 1595c277 2022-04-07 op Specify the TLS protocols to enable.
145 1595c277 2022-04-07 op Refer to
146 1595c277 2022-04-07 op .Xr tls_config_parse_protocols 3
147 1595c277 2022-04-07 op for the valid protocol string values.
148 1595c277 2022-04-07 op By default, both TLSv1.3 and TLSv1.2 are enabled.
149 1595c277 2022-04-07 op Use
150 1595c277 2022-04-07 op .Dq tlsv1.3
151 1595c277 2022-04-07 op to enable only TLSv1.3.
152 1595c277 2022-04-07 op .It Ic user Ar string
153 1595c277 2022-04-07 op Run the daemon as the given user.
154 1595c277 2022-04-07 op .El
155 1595c277 2022-04-07 op .Ss Servers
156 1595c277 2022-04-07 op Every virtual host is defined by a
157 1595c277 2022-04-07 op .Ic server
158 1595c277 2022-04-07 op block:
159 1595c277 2022-04-07 op .Bl -tag -width Ds
160 1595c277 2022-04-07 op .It Ic server Ar hostname Brq ...
161 1595c277 2022-04-07 op Match the server name using shell globbing rules.
162 1595c277 2022-04-07 op It can be an explicit name,
163 1595c277 2022-04-07 op .Ar www.example.com ,
164 1595c277 2022-04-07 op or a name including a wildcards,
165 1595c277 2022-04-07 op .Ar *.example.com .
166 1595c277 2022-04-07 op .El
167 1595c277 2022-04-07 op .Pp
168 1595c277 2022-04-07 op Followed by a block of options that is enclosed in curly brackets:
169 1595c277 2022-04-07 op .Bl -tag -width Ds
170 1595c277 2022-04-07 op .It Ic alias Ar name
171 1595c277 2022-04-07 op Specify an additional alias
172 1595c277 2022-04-07 op .Ar name
173 1595c277 2022-04-07 op for this server.
174 1595c277 2022-04-07 op .It Ic auto Ic index Ar bool
175 1595c277 2022-04-07 op If no index file is found, automatically generate a directory listing.
176 1595c277 2022-04-07 op Disabled by default.
177 1595c277 2022-04-07 op .It Ic block Op Ic return Ar code Op Ar meta
178 1595c277 2022-04-07 op Send a reply and close the connection;
179 1595c277 2022-04-07 op by default
180 1595c277 2022-04-07 op .Ar code
181 1595c277 2022-04-07 op is 40
182 1595c277 2022-04-07 op and
183 1595c277 2022-04-07 op .Ar meta
184 1595c277 2022-04-07 op is
185 1595c277 2022-04-07 op .Dq temporary failure .
186 1595c277 2022-04-07 op If
187 1595c277 2022-04-07 op .Ar code
188 1595c277 2022-04-07 op is in the 3x range, then
189 1595c277 2022-04-07 op .Ar meta
190 1595c277 2022-04-07 op is mandatory.
191 1595c277 2022-04-07 op Inside
192 1595c277 2022-04-07 op .Ar meta ,
193 1595c277 2022-04-07 op the following special sequences are supported:
194 1595c277 2022-04-07 op .Bl -tag -width Ds -compact
195 1595c277 2022-04-07 op .It \&%\&%
196 1595c277 2022-04-07 op is replaced with a single
197 1595c277 2022-04-07 op .Sq \&% .
198 1595c277 2022-04-07 op .It \&%p
199 1595c277 2022-04-07 op is replaced with the request path.
200 1595c277 2022-04-07 op .It \&%q
201 1595c277 2022-04-07 op is replaced with the query string of the request.
202 1595c277 2022-04-07 op .It \&%P
203 1595c277 2022-04-07 op is replaced with the server port.
204 1595c277 2022-04-07 op .It \&%N
205 1595c277 2022-04-07 op is replaced with the server name.
206 1595c277 2022-04-07 op .El
207 1595c277 2022-04-07 op .It Ic cert Ar file
208 1595c277 2022-04-07 op Path to the certificate to use for this server.
209 1595c277 2022-04-07 op .Ar file
210 1595c277 2022-04-07 op should contain a PEM encoded certificate.
211 1595c277 2022-04-07 op This option is mandatory.
212 9b15e4c6 2022-09-08 op .It Ic default type Ar string
213 9b15e4c6 2022-09-08 op Set the default media type that is used if the media type for a
214 9b15e4c6 2022-09-08 op specified extension is not found.
215 9b15e4c6 2022-09-08 op If not specified, the
216 9b15e4c6 2022-09-08 op .Ic default type
217 9b15e4c6 2022-09-08 op is set to
218 9b15e4c6 2022-09-08 op .Dq application/octet-stream .
219 9b15e4c6 2022-09-08 op .It Ic fastcgi Oo Ic tcp Oc Ar socket Oo Cm port Ar port Oc
220 9b15e4c6 2022-09-08 op Enable
221 9b15e4c6 2022-09-08 op .Sx FastCGI
222 9b15e4c6 2022-09-08 op instead of serving files.
223 9b15e4c6 2022-09-08 op The
224 9b15e4c6 2022-09-08 op .Ar socket
225 9b15e4c6 2022-09-08 op can either be a UNIX-domain socket or a TCP socket.
226 9b15e4c6 2022-09-08 op If the FastCGI application is listening on a UNIX domain socket,
227 9b15e4c6 2022-09-08 op .Ar socket
228 9b15e4c6 2022-09-08 op is a local path name within the
229 9b15e4c6 2022-09-08 op .Xr chroot 2
230 9b15e4c6 2022-09-08 op root directory of
231 9b15e4c6 2022-09-08 op .Nm .
232 9b15e4c6 2022-09-08 op Otherwise, the
233 9b15e4c6 2022-09-08 op .Ic tcp
234 9b15e4c6 2022-09-08 op keyword must be provided and
235 9b15e4c6 2022-09-08 op .Ar socket
236 9b15e4c6 2022-09-08 op is interpreted as a hostname or an IP address.
237 9b15e4c6 2022-09-08 op .Ar port
238 9b15e4c6 2022-09-08 op can be either a port number or the name of a service enclosed in
239 9b15e4c6 2022-09-08 op double quotes.
240 9b15e4c6 2022-09-08 op If not specified defaults to 9000.
241 9b15e4c6 2022-09-08 op .It Ic index Ar string
242 9b15e4c6 2022-09-08 op Set the directory index file.
243 9b15e4c6 2022-09-08 op If not specified, it defaults to
244 9b15e4c6 2022-09-08 op .Pa index.gmi .
245 9b15e4c6 2022-09-08 op .It Ic key Ar file
246 9b15e4c6 2022-09-08 op Specify the private key to use for this server.
247 9b15e4c6 2022-09-08 op .Ar file
248 9b15e4c6 2022-09-08 op should contain a PEM encoded private key.
249 9b15e4c6 2022-09-08 op This option is mandatory.
250 9b15e4c6 2022-09-08 op .It Ic lang Ar string
251 9b15e4c6 2022-09-08 op Specify the language tag for the text/gemini content served.
252 9b15e4c6 2022-09-08 op If not specified, no
253 9b15e4c6 2022-09-08 op .Dq lang
254 9b15e4c6 2022-09-08 op parameter will be added in the response.
255 9b15e4c6 2022-09-08 op .It Ic location Ar path Brq ...
256 9b15e4c6 2022-09-08 op Specify server configuration rules for a specific location.
257 1595c277 2022-04-07 op .Ar path
258 9b15e4c6 2022-09-08 op argument will be matched against the request path with shell globbing
259 9b15e4c6 2022-09-08 op rules.
260 9b15e4c6 2022-09-08 op In case of multiple location statements in the same context, the first
261 9b15e4c6 2022-09-08 op matching location will be put into effect and the later ones ignored.
262 9b15e4c6 2022-09-08 op Therefore is advisable to match for more specific paths first and for
263 9b15e4c6 2022-09-08 op generic ones later on.
264 9b15e4c6 2022-09-08 op A
265 9b15e4c6 2022-09-08 op .Ic location
266 9b15e4c6 2022-09-08 op section may include most of the server configuration rules
267 9b15e4c6 2022-09-08 op except
268 9b15e4c6 2022-09-08 op .Ic alias , Ic cert , Ic key , Ic location , Ic param No and Ic proxy .
269 9b15e4c6 2022-09-08 op .It Ic log Ar bool
270 9b15e4c6 2022-09-08 op Enable or disable the logging for the current server or location block.
271 9b15e4c6 2022-09-08 op .It Ic param Ar name Cm = Ar value
272 9b15e4c6 2022-09-08 op Set the param
273 9b15e4c6 2022-09-08 op .Ar name
274 9b15e4c6 2022-09-08 op to
275 9b15e4c6 2022-09-08 op .Ar value
276 9b15e4c6 2022-09-08 op for FastCGI.
277 9b15e4c6 2022-09-08 op By default the following parameters are defined:
278 1595c277 2022-04-07 op .Bl -tag -width 24m
279 1595c277 2022-04-07 op .It Ev GATEWAY_INTERFACE
280 1595c277 2022-04-07 op .Dq CGI/1.1
281 1595c277 2022-04-07 op .It Ev GEMINI_DOCUMENT_ROOT
282 1595c277 2022-04-07 op The root directory of the virtual host.
283 1595c277 2022-04-07 op .It Ev GEMINI_SCRIPT_FILENAME
284 9b15e4c6 2022-09-08 op Full path to the FastCGI script being executed.
285 1595c277 2022-04-07 op .It Ev GEMINI_URL
286 1595c277 2022-04-07 op The full IRI of the request.
287 1595c277 2022-04-07 op .It Ev GEMINI_URL_PATH
288 1595c277 2022-04-07 op The path of the request.
289 1595c277 2022-04-07 op .It Ev PATH_INFO
290 1595c277 2022-04-07 op The portion of the requested path that is derived from the the IRI
291 1595c277 2022-04-07 op path hierarchy following the part that identifies the script itself.
292 1595c277 2022-04-07 op Can be unset.
293 1595c277 2022-04-07 op .It Ev PATH_TRANSLATED
294 1595c277 2022-04-07 op Present if and only if
295 1595c277 2022-04-07 op .Ev PATH_INFO
296 1595c277 2022-04-07 op is set.
297 1595c277 2022-04-07 op It represent the translation of the
298 1595c277 2022-04-07 op .Ev PATH_INFO .
299 1595c277 2022-04-07 op .Nm gmid
300 1595c277 2022-04-07 op builds this by appending the
301 1595c277 2022-04-07 op .Ev PATH_INFO
302 1595c277 2022-04-07 op to the virtual host directory root.
303 1595c277 2022-04-07 op .It Ev QUERY_STRING
304 1595c277 2022-04-07 op The decoded query string.
305 1595c277 2022-04-07 op .It Ev REMOTE_ADDR , Ev REMOTE_HOST
306 1595c277 2022-04-07 op Textual representation of the client IP.
307 1595c277 2022-04-07 op .It Ev REQUEST_METHOD
308 1595c277 2022-04-07 op This is present only for RFC3875 (CGI) compliance.
309 1595c277 2022-04-07 op It's always set to the empty string.
310 1595c277 2022-04-07 op .It Ev SCRIPT_NAME
311 9b15e4c6 2022-09-08 op The virtual URI path to the script.
312 1595c277 2022-04-07 op .It Ev SERVER_NAME
313 1595c277 2022-04-07 op The name of the server
314 1595c277 2022-04-07 op .It Ev SERVER_PORT
315 1595c277 2022-04-07 op The port the server is listening on.
316 1595c277 2022-04-07 op .It Ev SERVER_PROTOCOL
317 1595c277 2022-04-07 op .Dq GEMINI
318 1595c277 2022-04-07 op .It Ev SERVER_SOFTWARE
319 1595c277 2022-04-07 op The name and version of the server, i.e.
320 1f6de749 2022-07-04 op .Dq gmid/1.8.4
321 1595c277 2022-04-07 op .It Ev AUTH_TYPE
322 1595c277 2022-04-07 op The string "Certificate" if the client used a certificate, otherwise
323 1595c277 2022-04-07 op unset.
324 1595c277 2022-04-07 op .It Ev REMOTE_USER
325 1595c277 2022-04-07 op The subject of the client certificate if provided, otherwise unset.
326 1595c277 2022-04-07 op .It Ev TLS_CLIENT_ISSUER
327 1595c277 2022-04-07 op The is the issuer of the client certificate if provided, otherwise
328 1595c277 2022-04-07 op unset.
329 1595c277 2022-04-07 op .It Ev TLS_CLIENT_HASH
330 1595c277 2022-04-07 op The hash of the client certificate if provided, otherwise unset.
331 1595c277 2022-04-07 op The format is
332 1595c277 2022-04-07 op .Dq ALGO:HASH .
333 1595c277 2022-04-07 op .It Ev TLS_VERSION
334 1595c277 2022-04-07 op The TLS version negotiated with the peer.
335 1595c277 2022-04-07 op .It Ev TLS_CIPHER
336 1595c277 2022-04-07 op The cipher suite negotiated with the peer.
337 1595c277 2022-04-07 op .It Ev TLS_CIPHER_STRENGTH
338 1595c277 2022-04-07 op The strength in bits for the symmetric cipher that is being used with
339 1595c277 2022-04-07 op the peer.
340 1595c277 2022-04-07 op .It Ev TLS_CLIENT_NOT_AFTER
341 1595c277 2022-04-07 op The time corresponding to the end of the validity period of the peer
342 1595c277 2022-04-07 op certificate in the ISO 8601 format
343 1595c277 2022-04-07 op .Pq e.g. Dq 2021-02-07T20:17:41Z .
344 1595c277 2022-04-07 op .It Ev TLS_CLIENT_NOT_BEFORE
345 1595c277 2022-04-07 op The time corresponding to the start of the validity period of the peer
346 1595c277 2022-04-07 op certificate in the ISO 8601 format.
347 1595c277 2022-04-07 op .El
348 1595c277 2022-04-07 op .It Ic ocsp Ar file
349 1595c277 2022-04-07 op Specify an OCSP response to be stapled during TLS handshakes
350 1595c277 2022-04-07 op with this server.
351 1595c277 2022-04-07 op The
352 1595c277 2022-04-07 op .Ar file
353 1595c277 2022-04-07 op should contain a DER-format OCSP response retrieved from an
354 1595c277 2022-04-07 op OCSP server for the
355 1595c277 2022-04-07 op .Ic cert
356 1595c277 2022-04-07 op in use.
357 1595c277 2022-04-07 op If the OCSP response in
358 1595c277 2022-04-07 op .Ar file
359 1595c277 2022-04-07 op is empty, OCSP stapling will not be used.
360 1595c277 2022-04-07 op The default is to not use OCSP stapling.
361 1595c277 2022-04-07 op .It Ic proxy Oo Cm proto Ar name Oc Oo Cm for-host Ar host : Ns Oo Ar port Oc Oc Brq ...
362 1595c277 2022-04-07 op Set up a reverse proxy.
363 1595c277 2022-04-07 op The optional matching rules
364 1595c277 2022-04-07 op .Cm proto
365 1595c277 2022-04-07 op and
366 1595c277 2022-04-07 op .Cm for-host
367 1595c277 2022-04-07 op can be used to enable proxying only for protocols matching
368 1595c277 2022-04-07 op .Ar name
369 1595c277 2022-04-07 op .Po Dq gemini
370 1595c277 2022-04-07 op by default
371 1595c277 2022-04-07 op .Pc
372 1595c277 2022-04-07 op and/or whose request IRI matches
373 1595c277 2022-04-07 op .Ar host
374 1595c277 2022-04-07 op and
375 1595c277 2022-04-07 op .Ar port
376 1595c277 2022-04-07 op .Pq 1965 by default .
377 1595c277 2022-04-07 op Matching happens using shell globbing rules.
378 1595c277 2022-04-07 op .Pp
379 1595c277 2022-04-07 op In case of multiple matching proxy blocks in the same context, the
380 1595c277 2022-04-07 op first matching proxy will be put into effect and the later ones
381 1595c277 2022-04-07 op ignored.
382 1595c277 2022-04-07 op .Pp
383 1595c277 2022-04-07 op Valid options are:
384 1595c277 2022-04-07 op .Bl -tag -width Ds
385 1595c277 2022-04-07 op .It Ic cert Ar file
386 1595c277 2022-04-07 op Specify the client certificate to use when making requests.
387 1595c277 2022-04-07 op .It Ic key Ar file
388 1595c277 2022-04-07 op Specify the client certificate key to use when making requests.
389 1595c277 2022-04-07 op .It Ic protocols Ar string
390 1595c277 2022-04-07 op Specify the TLS protocols allowed when making remote requests.
391 1595c277 2022-04-07 op Refer to the
392 1595c277 2022-04-07 op .Xr tls_config_parse_protocols 3
393 1595c277 2022-04-07 op function for the valid protocol string values.
394 1595c277 2022-04-07 op By default, both TLSv1.2 and TLSv1.3 are enabled.
395 1595c277 2022-04-07 op .It Ic relay-to Ar host : Ns Op Ar port
396 1595c277 2022-04-07 op Relay the request to the given
397 1595c277 2022-04-07 op .Ar host
398 1595c277 2022-04-07 op at the given
399 1595c277 2022-04-07 op .Ar port ,
400 1595c277 2022-04-07 op 1965 by default.
401 1595c277 2022-04-07 op This is the only mandatory option in a
402 1595c277 2022-04-07 op .Ic proxy
403 1595c277 2022-04-07 op block.
404 1595c277 2022-04-07 op .It Ic require Ic client Ic ca Ar file
405 1595c277 2022-04-07 op Allow the proxying only from clients that provide a certificate
406 1595c277 2022-04-07 op signed by the CA certificate in
407 1595c277 2022-04-07 op .Ar file .
408 1595c277 2022-04-07 op .It Ic sni Ar hostname
409 1595c277 2022-04-07 op Use the given
410 1595c277 2022-04-07 op .Ar hostname
411 1595c277 2022-04-07 op instead of the one extracted from the
412 1595c277 2022-04-07 op .Ic relay-to
413 1595c277 2022-04-07 op rule for the TLS handshake with the proxied gemini server.
414 1595c277 2022-04-07 op .It Ic use-tls Ar bool
415 1595c277 2022-04-07 op Specify whether to use TLS when connecting to the proxied host.
416 1595c277 2022-04-07 op Enabled by default.
417 1595c277 2022-04-07 op .It Ic verifyname Ar bool
418 1595c277 2022-04-07 op Enable or disable the TLS server name verification.
419 1595c277 2022-04-07 op Enabled by default.
420 1595c277 2022-04-07 op .El
421 1595c277 2022-04-07 op .It Ic root Ar directory
422 1595c277 2022-04-07 op Specify the root directory for this server
423 1595c277 2022-04-07 op .Pq alas the current Dq document root .
424 1595c277 2022-04-07 op It's relative to the chroot if enabled.
425 1595c277 2022-04-07 op .It Ic require Ic client Ic ca Ar path
426 1595c277 2022-04-07 op Allow requests only from clients that provide a certificate signed by
427 1595c277 2022-04-07 op the CA certificate in
428 1595c277 2022-04-07 op .Ar path .
429 1595c277 2022-04-07 op It needs to be a PEM-encoded certificate and it's not relative to the
430 1595c277 2022-04-07 op chroot.
431 1595c277 2022-04-07 op .It Ic strip Ar number
432 1595c277 2022-04-07 op Strip
433 1595c277 2022-04-07 op .Ar number
434 1595c277 2022-04-07 op components from the beginning of the path before doing a lookup in the
435 1595c277 2022-04-07 op root directory.
436 1595c277 2022-04-07 op It's also considered for the
437 1595c277 2022-04-07 op .Ar meta
438 1595c277 2022-04-07 op parameter in the scope of a
439 1595c277 2022-04-07 op .Ic block return .
440 1595c277 2022-04-07 op .El
441 1595c277 2022-04-07 op .Ss Types
442 1595c277 2022-04-07 op The
443 1595c277 2022-04-07 op .Ic types
444 1595c277 2022-04-07 op section must include one or more lines of the following syntax, enclosed
445 1595c277 2022-04-07 op in curly brances:
446 1595c277 2022-04-07 op .Bl -tag -width Ds
447 1595c277 2022-04-07 op .It Ar type/subtype Ar name Op Ar name ...
448 1595c277 2022-04-07 op Set the media
449 1595c277 2022-04-07 op .Ar type
450 1595c277 2022-04-07 op and
451 1595c277 2022-04-07 op .Ar subtype
452 1595c277 2022-04-07 op to the specified extension
453 1595c277 2022-04-07 op .Ar name .
454 1595c277 2022-04-07 op One or more names can be specified per line.
455 1595c277 2022-04-07 op Earch line may end with an optional semicolon.
456 1595c277 2022-04-07 op .It Ic include Ar file
457 1595c277 2022-04-07 op Include types definition from an external file, for example
458 1595c277 2022-04-07 op .Pa /usr/share/misc/mime.types .
459 1595c277 2022-04-07 op .El
460 1595c277 2022-04-07 op .Pp
461 1595c277 2022-04-07 op By default
462 1595c277 2022-04-07 op .Nm gmid
463 5f03bf17 2022-04-08 op uses the following mapping if no
464 5f03bf17 2022-04-08 op .Ic types
465 93cab6dc 2022-04-08 op block is defined:
466 1595c277 2022-04-07 op .Bl -tag -offset indent -width 15m -compact
467 1595c277 2022-04-07 op .It application/pdf
468 1595c277 2022-04-07 op pdf
469 1595c277 2022-04-07 op .It image/gif
470 1595c277 2022-04-07 op gif
471 1595c277 2022-04-07 op .It image/jpeg
472 aa6b8cf8 2022-04-08 op jpg jpeg
473 1595c277 2022-04-07 op .It image/png
474 1595c277 2022-04-07 op png
475 1595c277 2022-04-07 op .It image/svg+xml
476 1595c277 2022-04-07 op svg
477 1595c277 2022-04-07 op .It text/gemini
478 1595c277 2022-04-07 op gemini gmi
479 1595c277 2022-04-07 op .It text/markdown
480 1595c277 2022-04-07 op markdown md
481 1595c277 2022-04-07 op .It text/x-patch
482 1595c277 2022-04-07 op diff patch
483 1595c277 2022-04-07 op .It text/xml
484 1595c277 2022-04-07 op xml
485 1595c277 2022-04-07 op .El
486 93cab6dc 2022-04-08 op .Pp
487 93cab6dc 2022-04-08 op As an exception,
488 93cab6dc 2022-04-08 op .Nm gmid
489 93cab6dc 2022-04-08 op uses the MIME type
490 93cab6dc 2022-04-08 op .Ar text/gemini
491 93cab6dc 2022-04-08 op for file extensions
492 93cab6dc 2022-04-08 op .Ar gemini
493 93cab6dc 2022-04-08 op or
494 93cab6dc 2022-04-08 op .Ar gmi
495 93cab6dc 2022-04-08 op if no mapping was found.
496 1595c277 2022-04-07 op .Sh EXAMPLES
497 1595c277 2022-04-07 op The following is an example of a possible configuration for a site
498 1595c277 2022-04-07 op that enables only TLSv1.3, adds the MIME types mapping from
499 1595c277 2022-04-07 op .Pa /usr/share/misc/mime.types
500 1595c277 2022-04-07 op and defines two virtual host:
501 1595c277 2022-04-07 op .Bd -literal -offset indent
502 1595c277 2022-04-07 op ipv6 on # enable ipv6
503 1595c277 2022-04-07 op
504 1595c277 2022-04-07 op protocols "tlsv1.3"
505 1595c277 2022-04-07 op
506 1595c277 2022-04-07 op types {
507 1595c277 2022-04-07 op include "/usr/share/misc/mime.types"
508 1595c277 2022-04-07 op }
509 1595c277 2022-04-07 op
510 1595c277 2022-04-07 op server "example.com" {
511 1595c277 2022-04-07 op cert "/etc/ssl/example.com.pem"
512 1595c277 2022-04-07 op key "/etc/ssl/private/example.com.key"
513 1595c277 2022-04-07 op root "/var/gemini/example.com"
514 1595c277 2022-04-07 op }
515 1595c277 2022-04-07 op
516 1595c277 2022-04-07 op server "example.it" {
517 1595c277 2022-04-07 op cert "/etc/ssl/example.it.pem"
518 1595c277 2022-04-07 op key "/etc/ssl/private/example.it.key"
519 1595c277 2022-04-07 op root "/var/gemini/example.it"
520 1595c277 2022-04-07 op
521 1595c277 2022-04-07 op # set the language for text/gemini files
522 1595c277 2022-04-07 op lang "it"
523 1595c277 2022-04-07 op }
524 1595c277 2022-04-07 op .Ed
525 1595c277 2022-04-07 op .Pp
526 1595c277 2022-04-07 op Yet another example, showing how to enable a
527 1595c277 2022-04-07 op .Ic chroot
528 1595c277 2022-04-07 op and use
529 1595c277 2022-04-07 op .Ic location
530 1595c277 2022-04-07 op rule
531 1595c277 2022-04-07 op .Bd -literal -offset indent
532 1595c277 2022-04-07 op chroot "/var/gemini"
533 1595c277 2022-04-07 op user "_gmid"
534 1595c277 2022-04-07 op
535 1595c277 2022-04-07 op server "example.com" {
536 1595c277 2022-04-07 op # absolute paths:
537 1595c277 2022-04-07 op cert "/etc/ssl/example.com.pem"
538 1595c277 2022-04-07 op key "/etc/ssl/private/example.com.key"
539 1595c277 2022-04-07 op
540 1595c277 2022-04-07 op # relative to the chroot:
541 1595c277 2022-04-07 op root "/example.com"
542 1595c277 2022-04-07 op
543 1595c277 2022-04-07 op location "/static/*" {
544 1595c277 2022-04-07 op # load the following rules only for
545 1595c277 2022-04-07 op # requests that matches "/static/*"
546 1595c277 2022-04-07 op
547 1595c277 2022-04-07 op auto index on
548 1595c277 2022-04-07 op index "index.gemini"
549 1595c277 2022-04-07 op }
550 1595c277 2022-04-07 op }
551 1595c277 2022-04-07 op .Ed
552 1595c277 2022-04-07 op .Sh SEE ALSO
553 9b15e4c6 2022-09-08 op .Xr gmid 8 ,
554 1595c277 2022-04-07 op .Xr slowcgi 8
555 1595c277 2022-04-07 op .Sh AUTHORS
556 1595c277 2022-04-07 op .An -nosplit
557 1595c277 2022-04-07 op The
558 1595c277 2022-04-07 op .Nm gmid
559 1595c277 2022-04-07 op program was written by
560 1595c277 2022-04-07 op .An Omar Polo Aq Mt op@omarpolo.com .