bored

A micro PHP framework
git clone git://git.bitsmanent.org/bored
Log | Files | Refs | README

commit 49126ed417ec6d96183e1a85e79a861be7079327
parent 3f9c09a81a2d32c5f5ab6f9a88e1737b41ed4ec6
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Tue,  5 Jan 2016 09:32:44 +0100

No need to configure your web server.

Diffstat:
MREADME.md | 23++---------------------
1 file changed, 2 insertions(+), 21 deletions(-)

diff --git a/README.md b/README.md @@ -118,24 +118,5 @@ Array ... ### Web server configuration -I can't cover all scenarious, here is the most common where there is a bored -instance for a single domain: - -#### nginx - -``` -server { - root /usr/share/nginx/www/bored/app/public/; - index index.html index.php; - server_name bored; - - location / { - try_files $uri $uri/ /index.php?$args; - location ~ \.php$ { - fastcgi_pass unix:/var/run/php5-fpm.sock; - fastcgi_param SCRIPT_FILENAME $request_filename; - include fastcgi_params; - } - } -} -``` +There is no need to configure the web server at all, just include bored from +your PHP project files and you're done.