CFloor/tests/test-with-ssl.conf

30 lines
374 B
Text
Raw Normal View History

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