mirror of
https://github.com/sigmasternchen/CFloor
synced 2025-03-15 20:28:56 +00:00
25 lines
302 B
Text
25 lines
302 B
Text
![]() |
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
|
||
|
}
|
||
|
}
|
||
|
}
|