Kima Framework

0.19.2 2024-02-05 17:43 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;
    }
}