stevevega/kima-skeleton

PHP Skeleton app using Kima Framework

1.0.9 2016-02-03 19:52 UTC

This package is auto-updated.

Last update: 2024-04-26 15:02:14 UTC


README

Kima PHP Framework

Usage

  1. Install composer
  2. Execute "composer create-project stevevega/kima-skeleton [DESTINATION PATH]"
  3. Make your webserver point to [DESTINATION PATH]/public

Example nginx server config

server {
    listen 80;
    server_name [YOUR_DOMAIN];

    root [DESTINATION_PATH]/public;
    index index.html index.htm index.php;

    location / {
        # This is cool because no php is touched for static content
        try_files $uri $uri/ /index.php?$args;
    }

    location ~ \.php$ {
        # Filter out arbitrary code execution
        location ~ \..*/.*\.php$ {return 404;}

        include fastcgi_params;
        fastcgi_param SERVER_NAME $http_host;
        fastcgi_pass unix:/tmp/php.socket;
    }
}