Commit ebd3bbca authored by Jeremy's avatar Jeremy

[docs] Add config example for lighttpd

parent 14f48cb9
...@@ -814,6 +814,21 @@ resources to ``index.php``: ...@@ -814,6 +814,21 @@ resources to ``index.php``:
} }
} }
Lighttpd
~~~~~
If you are using lighttpd, you can use this sample ``simple-vhost``:
.. code-block:: lighttpd
server.document-root = "/path/to/app"
url.rewrite-once = (
"^/assets/.+" => "$0", # directories with static files
"^/favicon\.ico$" => "$0",
"^(/[^\?]*)(\?.*)?" => "/index.php$1$2"
)
IIS IIS
~~~ ~~~
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment