美文网首页
laravel安装

laravel安装

作者: 刚刚少帅 | 来源:发表于2017-04-07 23:02 被阅读0次

    下载地址http://down.golaravel.com/laravel/laravel-v5.2.15.zip

    服务器配置

    ---

    1.apache

    *配置  httpd-cong:php5_module  rewrite_module

    Lister

    配置extra/httpd-vhost:端口  站点  域名

    系统 hosts:将域名指向本地

    重启apache

    修改文件权限   vendor         storage

    sudo chokmod -R 0777 vendor storage

    2.Nginx

    *配置  nginx.conf:端口   站点  域名  默认首页

    *  localtion~\.php${

            fastcgi_pass 127.0.0.1:9000;

       }

    location {

         try_files $uri $uri/ /index.php?$query_string;

      }

    *系统 hosts:将域名指向本地

    重启nginx     pkill -HUP nginx平滑启动

    修改文件权限   vendor         storage

    .env

    key   最好在config  /app.php  在设置一边  一样的   提高稳定性

    相关文章

      网友评论

          本文标题:laravel安装

          本文链接:https://www.haomeiwen.com/subject/wlhkattx.html