Created a lighttpd config

Tested and working :)
This commit is contained in:
Belle Aerni 2023-02-06 18:34:34 -08:00
parent 9eb24fee30
commit 3ce0896af5
1 changed files with 8 additions and 0 deletions

8
configs/lighttpd.conf Normal file
View File

@ -0,0 +1,8 @@
$HTTP["host"] == "example.com" {
server.document-root = vhosts_dir + "/example.com/htdocs"
url.rewrite-final = (
"^/Themes/[^/]+/Assets/.+$" => "$0",
"^/(.+)$" => "/index.php/$1"
)
}