前言
本文是介绍了关于整个过程部署laravel与xhprof安装的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
前提成功安装了LNMP集成环境 (lnmp.org 即可快速安装),保证network正常运行
首先配置laravel的运行环境
1.上传代码到/home/wwwroot/default/
2.修改nginx配置文件的root以及rewrite配置
include enable-php-pathinfo.conf;
location / {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}
location ~ /index.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root/inde/
/x.php;
include fastcgi_params;
fastcgi_param APPLICATION_ENV dev;
}
3.修改权限
$ chmod -R 777 storage vendo
4.laravel指定的public下,需要防跨目录
/usr/local/nginx/conf/fastcgi.conf 里面的fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";
在该行行前添加 # 或删除改行,需要重启nginx。
5.数据库操作(可省略根据自己情况操作数据)
GRANT ALL PRIVILEGES ON
TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
安装配置xhprof
1.下载安装xhprof
$ cd /home/wwwroot/default
$ wget
$ tar -zxvf xhprof-0.9.4.tgz xhprof
$ mv xhprof-0.9.4 /
/xhprof
$ cd xhprof
$ cd extension/
$ phpize
$ ./configure --with-php-config=/usr/local/php/bin/php-config --enable-xhprof #更近自己的php安装来配置
$ make
$ sudo make install
2.修改php.ini
[xhprof]
extension=xhprof.so
xhprof.output_dir=/tmp/xhprof
$ cd /tmp && mkdir xhprof
$ chmod -R 777 xhprof
3.安装 graphviz
$ cd && yum -y install graphviz
4.添加一个vhost(举个栗子:www.xhproftest.com)
$ lnmp vhost add
laravel项目中配置xhprof
xhprof_enable(XHPROF_FLAGS_NO_BUILTINS | XHPROF_FLAGS_CPU | XHPROF_FLAGS_MEMORY);
foo();
$xhprofData = xhprof_disable();
require '/home/wwwroot/xhprof/xhprof_lib/utils/xhprof_lib.php';
require '/home/wwwroot/xhprof/xhprof_lib/utils/xhprof_runs.php';
$xhprofRuns = new XHProfRuns_Default();
$runId = $xhprofRuns->save_run($xhprofData, 'xhprof_test');
echo '
;run=' . $runId . '&source=xhprof_test';
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。