mirror of
https://github.com/sigmasternchen/CFloor
synced 2025-03-15 04:18:55 +00:00
29 lines
360 B
Text
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
|
|
}
|