stevevega/kima-skeleton
最新稳定版本:1.0.9
Composer 安装命令:
composer require stevevega/kima-skeleton
包简介
PHP Skeleton app using Kima Framework
关键字:
README 文档
README
Kima PHP Framework
Usage
- Install composer
- Execute "composer create-project stevevega/kima-skeleton [DESTINATION PATH]"
- 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;
}
}
统计信息
- 总下载量: 19
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: BSD-3-Clause
- 更新时间: 2015-03-08