Pico is a stupidly simple, blazing fast, flat file CMS.
Find a file
2013-08-29 02:16:35 +03:00
content Layout using example 2013-08-29 02:07:55 +03:00
lib fix Layout support 2013-08-29 02:16:35 +03:00
plugins remove ?> 2013-08-28 17:33:10 +03:00
themes Layout using example 2013-08-29 02:07:55 +03:00
vendor clean vendor dir 2013-08-28 17:27:20 +03:00
.gitignore extend gitignore 2013-08-28 17:28:34 +03:00
.htaccess Initial commit. 2012-04-04 14:45:09 +01:00
changelog.txt changelog 2013-08-28 17:45:46 +03:00
composer.json change markdown 2013-08-28 17:25:13 +03:00
config.php change markdown 2013-08-28 17:25:13 +03:00
index.php change markdown 2013-08-28 17:25:13 +03:00
license.txt Initial commit. 2012-04-04 14:45:09 +01:00
README.md lighttpd conf; thanks to @cochrandv 2013-08-28 17:51:13 +03:00

Pico

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