CFloor/tests/test-with-ssl.conf

30 lines
360 B
Text
Raw Normal View History

2019-03-13 12:48:06 +00:00
bind 0.0.0.0:80 {
site {
hostname = example.com
2021-04-29 21:01:27 +00:00
root = /
2019-03-13 12:48:06 +00:00
handler / {
type = file
index = index.html
}
}
}
bind 0.0.0.0:443 {
ssl {
key = ssl.key
cert = ssl.crt
}
site {
hostname = example.com
2021-04-29 21:01:27 +00:00
root = /
2019-03-13 12:48:06 +00:00
handler / {
type = file
index = index.html
}
}
}
2019-03-13 15:01:38 +00:00
logging {
access = access.log
server = server.log
verbosity = info
}