28 lines
984 B
Plaintext
28 lines
984 B
Plaintext
|
|
#######################################################################
|
||
|
|
##
|
||
|
|
## For more examples check:
|
||
|
|
##
|
||
|
|
## https://wiki.lighttpd.net/Docs_ConfigurationOptions
|
||
|
|
##
|
||
|
|
|
||
|
|
#$HTTP["host"] == "download.example.com" {
|
||
|
|
#var.server_name = "download.example.com"
|
||
|
|
#server.name = server_name
|
||
|
|
#server.document-root = vhosts_dir + "/web/" + server_name + "/htdocs"
|
||
|
|
|
||
|
|
## TLS certificate per vhost
|
||
|
|
##
|
||
|
|
#ssl.pemfile = vhosts_dir + "/web/" + server_name + "/certs/fullchain.pem"
|
||
|
|
#ssl.privkey = vhosts_dir + "/web/" + server_name + "/certs/privkey.pem"
|
||
|
|
#ssl.stapling-file = vhosts_dir + "/web/" + server_name + "/certs/staple.der"
|
||
|
|
|
||
|
|
## use separate access/error log files
|
||
|
|
## (since lighttpd 1.4.56, server.errorlog can also be used in virtual hosts)
|
||
|
|
##
|
||
|
|
#accesslog.filename = log_root + "/" + server_name + "/access.log"
|
||
|
|
#server.errorlog = log_root + "/" + server_name + "/error.log"
|
||
|
|
#}
|
||
|
|
|
||
|
|
##
|
||
|
|
#######################################################################
|