为了账号安全,请及时绑定邮箱和手机立即绑定

window环境安装lumen步骤

标签:
PHP

window下安装
当前安装的lumen版本5.6 PHP版本7.2
第一步下载composer:
下载Windows平台下Composer的安装文件并安装:
https://getcomposer.org/Composer-Setup.exe
安装过程中需要选择你的php安装目录下的php.exe文件选择路径。(composer指定的php.exe文件版本不能低于新版lumen的支持版本,否则会导致下面的项目添加异常)
第二步切换镜像:
国外的网络问题一般需要切换到国内镜像:
composer config -g repo.packagist composer https://packagist.phpcomposer.com
第三步添加lumen扩展:
composer global require "laravel/lumen-installer=~1.0"
第四步直接到指定目录用lumen命令创建框架目录:
lumen new blog
第五步重命名:
ren D:\soft\PHPstudy\PHPTutorial\WWW\blog.env.example .env
添加秘钥
以上参考来源(https://lumen.laravel-china.org/docs/5.3/installation
https://pkg.phpcomposer.com/)(http://blog.m1910.com/archives/1481.html

安装框架配置nginx
vhosts.conf文件
server {
server_name test.com;
root "D:/soft/PHPstudy/PHPTutorial/WWW/news/public";
index index.html index.htm index.php;
try_files $uri $uri/ @rewrite;
location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
注释:root "D:/soft/PHPstudy/PHPTutorial/WWW/news/public";
window下nginx.conf 配置路径如果用反斜杠可能导致无法获取到文件信息,从而报错。
图片描述
ng配置参考来源(https://blog.csdn.net/skykingf/article/details/45824255

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
PHP开发工程师
手记
粉丝
104
获赞与收藏
364

关注作者,订阅最新文章

阅读免费教程

感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消