22 Star 95 Fork 15

manaphp / manaphp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.example 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
server {
listen 80;
server_name localhost.dev;
root /var/www/html/www.manaphp.com/public;
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?_url=$uri&$args;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index /index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
location ~ /\.ht {
deny all;
}
}
PHP
1
https://gitee.com/manaphp/manaphp.git
git@gitee.com:manaphp/manaphp.git
manaphp
manaphp
manaphp
master

搜索帮助