Created a lighttpd config
Tested and working :)
This commit is contained in:
parent
9eb24fee30
commit
3ce0896af5
1 changed files with 8 additions and 0 deletions
8
configs/lighttpd.conf
Normal file
8
configs/lighttpd.conf
Normal 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"
|
||||
)
|
||||
}
|
Loading…
Reference in a new issue