前言
本文是介绍了关于整个过程部署laravel与xhprof安装的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧。
前提成功安装了LNMP集成环境 (lnmp.org 即可快速安装),保证network正常运行
首先配置laravel的运行环境
include enable-PHP-pathinfo.conf;
添加rewrite规则
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/index.PHP;
include fastcgi_params;
fastcgi_param APPLICATION_ENV dev;
}
3.修改权限
4.laravel指定的public下,需要防跨目录
5.数据库操作(可省略根据自己情况操作数据)
安装配置xhprof
1.下载安装xhprof
在tmp下新建xhprof,同时赋予读写权限
$ cd /tmp && mkdir xhprof
$ chmod -R 777 xhprof
3.安装 graphviz
4.添加一个vhost(举个栗子:www.xhproftest.com)
重启启动Nginx
laravel项目中配置xhprof
foo();
停止 xhprof 性能分析器
$xhprofData = xhprof_disable();
根据自己安装的xhprof写require的路径
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 'http://localhost/xhprof/xhprof_html/index.PHP?run=' . $runId . '&source=xhprof_test';
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程之家的支持。
原文链接:https://www.f2er.com/laravel/16797.html