Blame


1 0111ad5d 2021-10-09 op # gmid quickstart
2 0111ad5d 2021-10-09 op
3 0111ad5d 2021-10-09 op gmid can be run in two different “modes”:
4 0111ad5d 2021-10-09 op
5 0111ad5d 2021-10-09 op * configless: a quick way to serve a directory tree from the shell, useful for testing a capsule before uploading it
6 0111ad5d 2021-10-09 op * daemon mode: gmid reads the configuration file and runs in the background
7 0111ad5d 2021-10-09 op
8 0111ad5d 2021-10-09 op To run gmid in the “configless” mode, just type:
9 0111ad5d 2021-10-09 op
10 0111ad5d 2021-10-09 op ```serve a directory tree from the shell
11 0111ad5d 2021-10-09 op $ gmid path/to/dir
12 0111ad5d 2021-10-09 op ```
13 0111ad5d 2021-10-09 op
14 540d05de 2021-10-09 op gmid will then generate a certificate inside ~/.local/share/gmid and serve the given directory locally.
15 0111ad5d 2021-10-09 op
16 0111ad5d 2021-10-09 op To run gmid in daemon mode a configuration file is needed. The format of the configuration file is described in the manpage and is quite flexible, but for simple setup something like the following should be enough:
17 0111ad5d 2021-10-09 op
18 0111ad5d 2021-10-09 op ```sample configuration file
19 0111ad5d 2021-10-09 op # /etc/gmid.conf
20 0111ad5d 2021-10-09 op
21 0111ad5d 2021-10-09 op server "example.com" {
22 0111ad5d 2021-10-09 op cert "/path/to/certificate"
23 0111ad5d 2021-10-09 op key "/path/to/private-key"
24 0111ad5d 2021-10-09 op root "/var/gemini/example.com"
25 0111ad5d 2021-10-09 op }
26 0111ad5d 2021-10-09 op ```
27 0111ad5d 2021-10-09 op
28 0111ad5d 2021-10-09 op A X.509 (TLS) certificate can be generated using contrib/gencert
29 0111ad5d 2021-10-09 op
30 0111ad5d 2021-10-09 op => https://git.omarpolo.com/gmid/tree/contrib/gencert contrib/gencert
31 0111ad5d 2021-10-09 op
32 0111ad5d 2021-10-09 op ```generate a certificate using contrib/gencert
33 0111ad5d 2021-10-09 op $ ./contrib/gencert example.com
34 0111ad5d 2021-10-09 op Generating a 4096 bit RSA private key
35 0111ad5d 2021-10-09 op .................................................++++
36 0111ad5d 2021-10-09 op ..........++++
37 0111ad5d 2021-10-09 op writing new private key to './example.com.key'
38 0111ad5d 2021-10-09 op -----
39 0111ad5d 2021-10-09 op
40 0111ad5d 2021-10-09 op Generated files:
41 0111ad5d 2021-10-09 op ./example.com.pem : certificate
42 0111ad5d 2021-10-09 op ./example.com.key : private key
43 0111ad5d 2021-10-09 op ```
44 0111ad5d 2021-10-09 op
45 35340c9f 2021-10-09 op Optionally, move ‘example.com.pem’ and ‘example.com.key’ to another location.
46 0111ad5d 2021-10-09 op
47 0111ad5d 2021-10-09 op Make sure that the ‘cert’ and ‘key’ options in the configuration file points to these files.
48 0111ad5d 2021-10-09 op
49 0111ad5d 2021-10-09 op Then running gmid is as easy as
50 0111ad5d 2021-10-09 op
51 0111ad5d 2021-10-09 op ```running gmid
52 0111ad5d 2021-10-09 op $ gmid -c /etc/gmid.conf
53 0111ad5d 2021-10-09 op ```
54 0111ad5d 2021-10-09 op
55 0111ad5d 2021-10-09 op
56 0111ad5d 2021-10-09 op ## Securing your gmid installation
57 0111ad5d 2021-10-09 op
58 0111ad5d 2021-10-09 op gmid employs various techniques to prevent the damage caused by bugs, but some steps needs to be done manually.
59 0111ad5d 2021-10-09 op
60 0111ad5d 2021-10-09 op If gmid was installed from your distribution package manager, chance are that it already does all of this and is also providing a service to run gmid automatically (e.g. a systemd unit file, a rc script, …) Otherwise, it’s heavily suggested to create at least a dedicated user.
61 0111ad5d 2021-10-09 op
62 0111ad5d 2021-10-09 op
63 0111ad5d 2021-10-09 op ### A dedicated user
64 0111ad5d 2021-10-09 op
65 35340c9f 2021-10-09 op Ideally, gmid should be started with root privileges and drop privileges to a local user. This way, the created certificates can be readable only by root. For example, on GNU/linux systems a ‘gmid’ user can be created with:
66 0111ad5d 2021-10-09 op
67 0111ad5d 2021-10-09 op ```how to create the gmid user
68 35340c9f 2021-10-09 op # useradd --system --no-create-home -s /bin/nologin -c "gmid Gemini server" gmid
69 0111ad5d 2021-10-09 op ```
70 0111ad5d 2021-10-09 op
71 0111ad5d 2021-10-09 op Please consult your OS documentation for more information on the matter.
72 0111ad5d 2021-10-09 op
73 0111ad5d 2021-10-09 op The configuration then needs to be adjusted to include the ‘user’ directive at the top:
74 0111ad5d 2021-10-09 op
75 0111ad5d 2021-10-09 op ```how to use the ‘user’ option
76 0111ad5d 2021-10-09 op # /etc/gmid.conf
77 0111ad5d 2021-10-09 op user "gmid"
78 0111ad5d 2021-10-09 op
79 0111ad5d 2021-10-09 op server "example.com" { … }
80 0111ad5d 2021-10-09 op ```
81 0111ad5d 2021-10-09 op
82 0111ad5d 2021-10-09 op gmid then needs to be started with root privileges, but will then switch to the provided user automatically. If by accident the ‘user’ is forgotten and gmid is running as root, it will complain loudly in the logs.
83 0111ad5d 2021-10-09 op
84 0111ad5d 2021-10-09 op
85 0111ad5d 2021-10-09 op ### chroot
86 0111ad5d 2021-10-09 op
87 0111ad5d 2021-10-09 op It’s a common practice for system daemons to chroot themselves into a directory. From here on I’ll assume /var/gemini, but it can be any directory.
88 0111ad5d 2021-10-09 op
89 0111ad5d 2021-10-09 op A chroot on UNIX-like OS is an operation that changes the “apparent” root directory (i.e. “/”) from the current process and its child. Think of it like imprisoning a process into a directory and never letting it escape until it terminates.
90 0111ad5d 2021-10-09 op
91 35340c9f 2021-10-09 op Using a chroot may complicate the use of CGI scripts, because then all the dependencies of the scripts (like sh, perl, libraries…) need to be installed inside the chroot too. For this very reason gmid supports FastCGI.
92 0111ad5d 2021-10-09 op
93 0111ad5d 2021-10-09 op The chroot feature requires a dedicate user, see the previous section.
94 0111ad5d 2021-10-09 op
95 0111ad5d 2021-10-09 op To chroot gmid inside a directory, use the ‘chroot’ directive in the configuration file:
96 0111ad5d 2021-10-09 op
97 0111ad5d 2021-10-09 op ```how to use the ‘chroot’ option
98 0111ad5d 2021-10-09 op # /etc/gmid.conf
99 0111ad5d 2021-10-09 op
100 35340c9f 2021-10-09 op user "gmid"
101 35340c9f 2021-10-09 op
102 0111ad5d 2021-10-09 op # the given directory, /var/gemini in this case, must exists.
103 0111ad5d 2021-10-09 op chroot "/var/gemini"
104 0111ad5d 2021-10-09 op ```
105 0111ad5d 2021-10-09 op
106 0111ad5d 2021-10-09 op Note that once ‘chroot’ is in place, every ‘root’ directive is implicitly relative to the chroot, but ‘cert’ and ‘key’ aren’t!
107 0111ad5d 2021-10-09 op
108 0111ad5d 2021-10-09 op For example, given the following configuration:
109 0111ad5d 2021-10-09 op
110 0111ad5d 2021-10-09 op ```example configuration using chroot
111 0111ad5d 2021-10-09 op # /etc/gmid.conf
112 0111ad5d 2021-10-09 op
113 0111ad5d 2021-10-09 op user "gmid"
114 0111ad5d 2021-10-09 op chroot "/var/gemini"
115 0111ad5d 2021-10-09 op
116 0111ad5d 2021-10-09 op server "example.com" {
117 0111ad5d 2021-10-09 op cert "/etc/ssl/example.com.pem"
118 0111ad5d 2021-10-09 op key "/etc/ssl/example.com.key"
119 0111ad5d 2021-10-09 op root "/example.com"
120 0111ad5d 2021-10-09 op }
121 0111ad5d 2021-10-09 op ```
122 0111ad5d 2021-10-09 op
123 0111ad5d 2021-10-09 op The certificate and the key path are the specified ones, but the root directory of the virtual host is actually “/var/gemini/example.com/”.