feat: entire blog now looks good :thumbs_up:
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/manual/woodpecker Pipeline was successful
This commit is contained in:
parent
014a99d7e2
commit
f76196b017
18 changed files with 2584 additions and 3 deletions
28
config/lighttpd.conf
Normal file
28
config/lighttpd.conf
Normal file
|
@ -0,0 +1,28 @@
|
|||
server.modules += ("mod_accesslog", "mod_rewrite", "mod_dirlisting", "mod_staticfile")
|
||||
|
||||
# General daemon settings
|
||||
server.username = "www-data"
|
||||
server.groupname = "www-data"
|
||||
server.port = 80
|
||||
server.max-fds = 600
|
||||
server.follow-symlink = "enable"
|
||||
|
||||
# Security
|
||||
static-file.exclude-extensions = (".php", ".pl", ".cgi", ".fcgi", "~")
|
||||
url.access-deny = ("~", ".inc")
|
||||
|
||||
# Content
|
||||
server.document-root = "/html"
|
||||
server.indexfiles = ("index.html", "index.htm")
|
||||
server.error-handler = "/error.html"
|
||||
|
||||
mimetype.assign = ( ".png" => "image/png",
|
||||
".jpg" => "image/jpeg",
|
||||
".jpeg" => "image/jpeg",
|
||||
".html" => "text/html",
|
||||
".txt" => "text/plain;charset=utf-8",
|
||||
".css" => "text/css" )
|
||||
|
||||
server.errorlog = "/logs/error.log"
|
||||
accesslog.filename = "/logs/access.log"
|
||||
server.breakagelog = "/logs/breakage.log"
|
Loading…
Add table
Add a link
Reference in a new issue