lighttpd conf; thanks to @cochrandv

This commit is contained in:
Roman Shvets 2013-08-28 17:51:13 +03:00
parent 5ccbd15956
commit 027477bd71

View file

@ -1,4 +1,21 @@
Pico
====
Pico is a stupidly simple, blazing fast, flat file CMS. See http://pico.dev7studios.com for more info.
Pico is a stupidly simple, blazing fast, flat file CMS. See http://pico.dev7studios.com for more info.
###Running Pico on lighttpd
```
$HTTP["host"] == "mysite.com" {
url.rewrite-once = (
"^/pico/content/(.*)\.md" => "/pico/index.php"
)
url.rewrite-if-not-file = (
"^/pico/(.*)$" => "/pico/index.php"
)
}
```