lighttpd conf; thanks to @cochrandv
This commit is contained in:
parent
5ccbd15956
commit
027477bd71
1 changed files with 18 additions and 1 deletions
19
README.md
19
README.md
|
@ -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"
|
||||
)
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue