19 lines
279 B
Plaintext
19 lines
279 B
Plaintext
|
fn lib = {
|
||
|
enable = true
|
||
|
host = '0.0.0.0'
|
||
|
port = 8080
|
||
|
document_root = /www
|
||
|
|
||
|
ssl = {
|
||
|
enable = on
|
||
|
cert = /etc/ssl/server.crt
|
||
|
key = /etc/ssl/server.key
|
||
|
}
|
||
|
|
||
|
logging = {
|
||
|
level = 'info'
|
||
|
access_log = /var/log/httpd/access.log
|
||
|
error_log = /var/log/httpd/error.log
|
||
|
}
|
||
|
}
|