Blame


1 b3010dbb 2023-06-24 op .\" Copyright (c) 2021, 2022, 2023 Omar Polo <op@omarpolo.com>
2 9b15e4c6 2022-09-08 op .\"
3 9b15e4c6 2022-09-08 op .\" Permission to use, copy, modify, and distribute this software for any
4 9b15e4c6 2022-09-08 op .\" purpose with or without fee is hereby granted, provided that the above
5 9b15e4c6 2022-09-08 op .\" copyright notice and this permission notice appear in all copies.
6 9b15e4c6 2022-09-08 op .\"
7 9b15e4c6 2022-09-08 op .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 9b15e4c6 2022-09-08 op .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 9b15e4c6 2022-09-08 op .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 9b15e4c6 2022-09-08 op .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 9b15e4c6 2022-09-08 op .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 9b15e4c6 2022-09-08 op .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 9b15e4c6 2022-09-08 op .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 56d32bb5 2023-07-24 op .Dd July 24, 2023
15 9b15e4c6 2022-09-08 op .Dt GMID 8
16 9b15e4c6 2022-09-08 op .Os
17 9b15e4c6 2022-09-08 op .Sh NAME
18 9b15e4c6 2022-09-08 op .Nm gmid
19 9b15e4c6 2022-09-08 op .Nd simple and secure Gemini server
20 9b15e4c6 2022-09-08 op .Sh SYNOPSIS
21 9b15e4c6 2022-09-08 op .Nm
22 9b15e4c6 2022-09-08 op .Bk -words
23 0ac785a6 2023-06-05 op .Op Fl fhnVv
24 0ac785a6 2023-06-05 op .Op Fl c Ar config
25 9b15e4c6 2022-09-08 op .Op Fl D Ar macro Ns = Ns Ar value
26 9b15e4c6 2022-09-08 op .Op Fl P Ar pidfile
27 9b15e4c6 2022-09-08 op .Ek
28 9b15e4c6 2022-09-08 op .Sh DESCRIPTION
29 9b15e4c6 2022-09-08 op .Nm
30 9b15e4c6 2022-09-08 op is a simple and minimal gemini server that can serve static files,
31 9b15e4c6 2022-09-08 op talk to FastCGI applications and act as a gemini reverse proxy.
32 9b15e4c6 2022-09-08 op .Pp
33 9b15e4c6 2022-09-08 op .Nm
34 9b15e4c6 2022-09-08 op rereads the configuration file when it receives
35 3bda540e 2023-07-24 op .Dv SIGHUP
36 3bda540e 2023-07-24 op and reopens log files when it receives
37 3bda540e 2023-07-24 op .Dv SIGUSR1 .
38 9b15e4c6 2022-09-08 op .Pp
39 9b15e4c6 2022-09-08 op The options are as follows:
40 9b15e4c6 2022-09-08 op .Bl -tag -width 14m
41 0ac785a6 2023-06-05 op .It Fl c Ar config
42 0ac785a6 2023-06-05 op Specifies the configuration file.
43 0ac785a6 2023-06-05 op The default is
44 0ac785a6 2023-06-05 op .Pa /etc/gmid.conf .
45 9b15e4c6 2022-09-08 op .It Fl D Ar macro Ns = Ns Ar value
46 9b15e4c6 2022-09-08 op Define
47 9b15e4c6 2022-09-08 op .Ar macro
48 9b15e4c6 2022-09-08 op to be set to
49 9b15e4c6 2022-09-08 op .Ar value
50 9b15e4c6 2022-09-08 op on the command line.
51 9b15e4c6 2022-09-08 op Overrides the definition of
52 9b15e4c6 2022-09-08 op .Ar macro
53 9b15e4c6 2022-09-08 op in the config file if present.
54 0ac785a6 2023-06-05 op .It Fl f
55 0ac785a6 2023-06-05 op Stays and logs on the foreground.
56 9b15e4c6 2022-09-08 op .It Fl h , Fl -help
57 9b15e4c6 2022-09-08 op Print the usage and exit.
58 9b15e4c6 2022-09-08 op .It Fl n
59 9b15e4c6 2022-09-08 op Check that the configuration is valid, but don't start the server.
60 9b15e4c6 2022-09-08 op If specified two or more time, dump the configuration in addition to
61 9b15e4c6 2022-09-08 op verify it.
62 9b15e4c6 2022-09-08 op .It Fl P Ar pidfile
63 9b15e4c6 2022-09-08 op Write daemon's pid to the given location.
64 9b15e4c6 2022-09-08 op .Ar pidfile
65 9b15e4c6 2022-09-08 op will also act as lock: if another process is holding a lock on that
66 9b15e4c6 2022-09-08 op file,
67 9b15e4c6 2022-09-08 op .Nm
68 9b15e4c6 2022-09-08 op will refuse to start.
69 9b15e4c6 2022-09-08 op .It Fl V , Fl -version
70 9b15e4c6 2022-09-08 op Print the version and exit.
71 9b15e4c6 2022-09-08 op .It Fl v
72 9b15e4c6 2022-09-08 op Verbose mode.
73 9b15e4c6 2022-09-08 op .El
74 9b15e4c6 2022-09-08 op .Sh LOGGING
75 9b15e4c6 2022-09-08 op Messages and requests are logged by
76 9b15e4c6 2022-09-08 op .Xr syslog 3
77 9b15e4c6 2022-09-08 op using the
78 9b15e4c6 2022-09-08 op .Dv DAEMON
79 9b15e4c6 2022-09-08 op facility or printed on
80 9b15e4c6 2022-09-08 op .Em stderr .
81 9b15e4c6 2022-09-08 op .Pp
82 9b15e4c6 2022-09-08 op Requests are logged with the
83 9b15e4c6 2022-09-08 op .Dv NOTICE
84 9b15e4c6 2022-09-08 op severity.
85 9b15e4c6 2022-09-08 op Each request log entry has the following fields, separated by
86 9b15e4c6 2022-09-08 op whitespace:
87 9b15e4c6 2022-09-08 op .Pp
88 9b15e4c6 2022-09-08 op .Bl -bullet -compact
89 9b15e4c6 2022-09-08 op .It
90 9b15e4c6 2022-09-08 op Client IP address and the source port number, separated by a colon
91 9b15e4c6 2022-09-08 op .It
92 9b15e4c6 2022-09-08 op .Sy GET
93 9b15e4c6 2022-09-08 op keyword
94 9b15e4c6 2022-09-08 op .It
95 9b15e4c6 2022-09-08 op Request URL
96 9b15e4c6 2022-09-08 op .It
97 9b15e4c6 2022-09-08 op Response status
98 9b15e4c6 2022-09-08 op .It
99 9b15e4c6 2022-09-08 op Response meta
100 9b15e4c6 2022-09-08 op .El
101 9b15e4c6 2022-09-08 op .Sh EXAMPLES
102 9b15e4c6 2022-09-08 op To run
103 9b15e4c6 2022-09-08 op .Nm
104 9b15e4c6 2022-09-08 op a configuration file and a X.509 certificate must be provided.
105 9b15e4c6 2022-09-08 op A self-signed certificate, which are commonly used in the Geminispace,
106 9b15e4c6 2022-09-08 op can be generated using for e.g.\&
107 9b15e4c6 2022-09-08 op .Xr openssl 1 :
108 9b15e4c6 2022-09-08 op .Bd -literal -offset indent
109 9b15e4c6 2022-09-08 op # openssl req \-x509 \-newkey rsa:4096 \-nodes \e
110 9b15e4c6 2022-09-08 op \-keyout /etc/ssl/private/example.com.key \e
111 9b15e4c6 2022-09-08 op \-out /etc/ssl/example.com.pem \e
112 9b15e4c6 2022-09-08 op \-days 365 \-subj "/CN=example.com"
113 9b15e4c6 2022-09-08 op # chmod 600 /etc/ssl/example.com.crt
114 9b15e4c6 2022-09-08 op # chmod 600 /etc/ssl/private/example.com.key
115 9b15e4c6 2022-09-08 op .Ed
116 9b15e4c6 2022-09-08 op .Pp
117 9b15e4c6 2022-09-08 op Then
118 9b15e4c6 2022-09-08 op .Nm
119 9b15e4c6 2022-09-08 op can be started with
120 9b15e4c6 2022-09-08 op .Bd -literal -offset indent
121 9b15e4c6 2022-09-08 op # gmid -c /etc/gmid.conf
122 9b15e4c6 2022-09-08 op .Ed
123 9b15e4c6 2022-09-08 op .Sh SEE ALSO
124 9b15e4c6 2022-09-08 op .Xr gmid.conf 5
125 9b15e4c6 2022-09-08 op .Sh ACKNOWLEDGEMENTS
126 9b15e4c6 2022-09-08 op .Nm
127 9b15e4c6 2022-09-08 op uses the
128 9b15e4c6 2022-09-08 op .Dq Flexible and Economical
129 9b15e4c6 2022-09-08 op UTF-8 decoder written by
130 9b15e4c6 2022-09-08 op .An Bjoern Hoehrmann .
131 9b15e4c6 2022-09-08 op .Sh AUTHORS
132 9b15e4c6 2022-09-08 op .An -nosplit
133 9b15e4c6 2022-09-08 op The
134 9b15e4c6 2022-09-08 op .Nm
135 9b15e4c6 2022-09-08 op program was written by
136 9b15e4c6 2022-09-08 op .An Omar Polo Aq Mt op@omarpolo.com .
137 9b15e4c6 2022-09-08 op .Sh CAVEATS
138 9b15e4c6 2022-09-08 op .Bl -bullet
139 9b15e4c6 2022-09-08 op .It
140 b3010dbb 2023-06-24 op All the root directories are opened during the daemon configuration;
141 b3010dbb 2023-06-24 op if a root directory is deleted and then re-created,
142 9b15e4c6 2022-09-08 op .Nm
143 b3010dbb 2023-06-24 op won't be able to serve files inside that directory until a reload.
144 9b15e4c6 2022-09-08 op This restriction only applies to the root directories and not their
145 9b15e4c6 2022-09-08 op content.
146 9b15e4c6 2022-09-08 op .It
147 9b15e4c6 2022-09-08 op a %2F sequence is indistinguishable from a literal slash: this is not
148 9b15e4c6 2022-09-08 op RFC3986-compliant.
149 9b15e4c6 2022-09-08 op .It
150 9b15e4c6 2022-09-08 op a %00 sequence is treated as invalid character and thus rejected.
151 9b15e4c6 2022-09-08 op .El