Pārlūkot izejas kodu

Created a lighttpd config

Tested and working :)
Belle Aerni 2 gadi atpakaļ
vecāks
revīzija
3ce0896af5
1 mainītis faili ar 8 papildinājumiem un 0 dzēšanām
  1. 8 0
      configs/lighttpd.conf

+ 8 - 0
configs/lighttpd.conf

@@ -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"
+  )
+}