CFloor/tests/test-with-ssl.conf
2021-04-29 23:01:27 +02:00

29 lines
360 B
Text

bind 0.0.0.0:80 {
site {
hostname = example.com
root = /
handler / {
type = file
index = index.html
}
}
}
bind 0.0.0.0:443 {
ssl {
key = ssl.key
cert = ssl.crt
}
site {
hostname = example.com
root = /
handler / {
type = file
index = index.html
}
}
}
logging {
access = access.log
server = server.log
verbosity = info
}