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