added sample configuration

This commit is contained in:
Omar Polo 2021-01-15 09:31:52 +00:00
parent e4d82becb7
commit 6214c12719
2 changed files with 20 additions and 0 deletions

View File

@ -1,5 +1,7 @@
2021-01-15 Omar Polo <op@omarpolo.com>
* sample.conf: added sample configuration
* gmid.c (main): changed behaviour: daemon off by default
(main): changed -c in -C (cert option)
(main): changed -k in -K (key option, for consistency with -C)

18
sample.conf Normal file
View File

@ -0,0 +1,18 @@
ipv6 on # enable ipv6
daemon on # enable daemon mode
# 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/"
}