gmid/sample.conf

25 lines
563 B
Plaintext
Raw Normal View History

2021-01-15 10:31:52 +01:00
ipv6 on # enable ipv6
daemon on # enable daemon mode
2021-01-15 19:55:05 +01:00
# decomment to allow only TLSv1.3
#protocols "tlsv1.3"
# add the mapping for the extension rtf to the MIME application/rtf
mime "application/rtf" "rtf"
2021-01-15 10:31:52 +01:00
# 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/"
}