PHPhub5 是用laravel 开发的一个论坛,地址:https://github.com/summerblue/PHPhub5, 由于需要的环境版本比较高,就用虚拟机配置了下,没有用官方的homestead方法
1.安装PHPcomposer
参考:http://docs.PHPcomposer.com/00-intro.html#Globally
2.编译或者用yum安装以下软件
3.拉取代码git clone https://github.com/summerblue/PHPhub5.git
4.配置
切到项目目录下执行
cp .env.example .env
PHP artisan est:install
Nginx配置vhost
server {
listen 80;
server_name localhost;
root /wwwroot/PHPhub5/public;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location / {
try_files $uri $uri/ /index.PHP?$query_string;
}
location ~ \.PHP$ {
fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/dev/shm/PHP-fpm.sock;
fastcgi_index index.PHP;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
5.启动服务
6.访问http://localhost 即可,如果运行报错检查laravel的错误日志再进行操作
7.用docker部署镜像后续有空试试
原文链接:https://www.f2er.com/centos/380157.html