Blob


1 ipv6 on # enable ipv6
2 daemon on # enable daemon mode
4 # decomment to allow only TLSv1.3
5 #protocols "tlsv1.3"
7 # server block example
8 server "example.com" {
9 cert "/path/to/cert.pem"
10 key "/path/to/key.pem"
11 root "/var/gemini/example.com"
12 }
14 # another example server, this time with CGI enabled for scripts in
15 # /cgi-bin/
16 server "it.example.com" {
17 cert "/path/to/cert.pem"
18 key "/path/to/key.pem"
19 root "/var/gemini/example.com"
20 cgi "/cgi-bin/"
21 }