LNMP环境+Laravel快速搭建

1. SSH 配置

生成本机密码

ssh-keygen -t rsa -P ''

touch authorized_keys

把本机的 id_rsa.pub 复制到 authorized_keys里面

添加虚拟机到.zrshrc

2. LNMP环境搭建

参考教程 http://lnmp.org

    screen -S lnmp

CentOS系统下执行

   wget -c http://soft.vpser.net/lnmp/lnmp1.1-full.tar.gz && tar zxf lnmp1.1-full.tar.gz && cd lnmp1.1-full && ./centos.sh

安装php 5.5

设置laravel 重写规则

 vim /usr/local/nginx/conf/

编辑laravel.conf

location / {
    try_files $uri $uri/ /index.php?$query_string;
}

伪静态

vim /usr/local/nginx/conf/vhost/域名.conf

修改为root /home/wwwroot/test.plantbabe.com/public

重启nignx

/etc/init.d/nginx restart 

安装composer

curl -sS https://getcomposer.org/installer | php

升级mysql 到5.6.23
参见 lnmp.org

修改mysql访问权限

mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '密码' WITH GRANT OPTION;

用sequel pro 访问

3. 迁移git 仓库

3.1 为防止ssh中断使用screen

screen 教程

3.2 拷贝仓库到当前文件

scp -r [email protected]:/home/git ~

3.3 安装git服务器

修改文件所有者 chown git:git gitosis

chown git:git gitosis

修改 gitosis.conf 添加权限

[group gitosis-admin]
writable = gitosis-admin
members = [email protected] [email protected]
[group hellow]
writable = teamwork
members = [email protected] [email protected]
[group larabook ]
writable = larabook
members = [email protected] [email protected]
[group plantbabe ]
writable = plantbabe
members = [email protected] [email protected]


测试
在本地

mkdir teamwork-ori
cd teamwork-ori/
git init
echo "/*add something*/" > hello
git add .
git commit -am "initial version"
git remote add origin [email protected]:teamwork.git
git push origin master

4 配置开发环境

.env.php

 'localhost',
    'DB_USERNAME' => 'homestead',
    'DB_PASSWORD' => 'secret',
    'DB_NAME' => 'plantbabe',
    'debug_status' => true,
    'TOKEN'     => 'bear',
    'APP_ID'     => 'wx91b17a7364915b53',
    'APP_SECRET' => '2faf63201cab4470e4ecf4ba3de3e325',
    'expire' => 1800 // 微信qrCode的时间
];

enable the php_fileinfo extension
由于我的环境是Lnmp.org提供的一键安装包,重启服务后依然有报错:
https://phphub.org/topics/267

$ php -i | grep php.ini
Configuration File (php.ini) Path => /usr/local/php/etc
Loaded Configuration File => /usr/local/php/etc/php.ini

PHP Warning: PHP Startup: Unable to load dynamic library
'/usr/local/lib/php/extensions/no-debug-non-zts-20121212/php_fileinfo.so
....
打开对应文件夹发现缺少此项文件;

我们可以通过pear或者pecl安装扩展包,我们这里用phpize;通过phpize安装必须包含有相应版本的php安装包,我用的是php-5.5.15.tar.gz:

解压安装包,找到php_fileinfo的文件夹,执行phpize
$ cd php-5.5.15/ext/fileinfo/
$ /usr/local/php/bin/phpize
确认/usr/local/php/bin/php-config的地址,配置configure 到 php-config:
$ ./configure --with-php-config=/usr/local/php/bin/php-config
*执行 make和 make install获得相应的fileinfo.so文件,系统将返回文件的地址,如果没有自动配置到相应文件夹,那么可手动拷贝过去

/usr/local/lib/php/extensions/no-debug-non-zts-20121212/fileinfo.so
由于我们php.ini配置的是 extension=php_fileinfo.so ,因此我们应该把fileinfo.so 重命名为php_fileinfo.so
重启服务$ /root/lnmp restart 大功告成!

pulic/images/设置成可读可写可执行

你可能感兴趣的:(LNMP环境+Laravel快速搭建)