mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-28 00:42:25 +01:00
32 lines
608 B
Plaintext
32 lines
608 B
Plaintext
# set user to run daemon as
|
|
user "gmid"
|
|
|
|
# enable ipv6 support
|
|
ipv6 on
|
|
|
|
server "localhost" {
|
|
# set directory to serve
|
|
root "/var/gemini/localhost"
|
|
|
|
# set self-signed TLS cert and key
|
|
# you should generate them manually, see `gencert -h`
|
|
cert "/etc/ssl/gmid/localhost.crt"
|
|
key "/etc/ssl/gmid/localhost.key"
|
|
|
|
# lang for text/gemini files
|
|
lang "en"
|
|
|
|
# only for locations that matches /files/*
|
|
location "/files/*" {
|
|
# generate directory listings
|
|
auto index on
|
|
}
|
|
|
|
# only for locations that matches /repo/*
|
|
location "/repo/*" {
|
|
# change the index file name
|
|
index "README.gmi"
|
|
lang "en"
|
|
}
|
|
}
|