摘要:环境说明操作系统安装准备均使用安装至少要有个的环境是少不了了安装步骤下载官方命令工具创建项目这里执行项目创建时,会从官网下载源码包,执行完后就能在当前目录看到了这里我创建了一个新的项目叫,最后的不是项目名字中的是要下载指定的版本的源
环境说明 操作系统
tony@ubuntu:~$ lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 14.04.2 LTS Release: 14.04 Codename: trustySymfony
symfony2.8安装准备
均使用 apt-get 安装
PHP5.4至少要有个PHP5.4的环境
nginxweb server 是少不了了
安装步骤1.下载官方命令工具
sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony sudo chmod a+x /usr/local/bin/symfony
2.创建项目
这里执行项目创建时,会从官网下载源码包,执行完后就能在当前目录看到了
symfony new symfony2.8 2.8
这里我创建了一个新的项目叫symfony2.8, 最后的2.8(不是项目名字中的2.8) 是要下载指定的symfony2.8版本的源码,如果要下载的是其他版本, 修改一下接口
3.检测
在安装完后, symfony还会进行一些检测, 看看你的操作系统环境是否适合运行symfony, 按照提示将缺失的扩展安装(我安装了intl)或者将PHP的配置修改(我就改了时区),再执行
php symfony2.8/bin/symfony_requirements
再次检测是否通过(php 后面的文件就在新创建的项目中,我这里项目名是symfony2.8)
运行symfony2.8" 自带的console(位置symfony2.8/bin/console)可以临时启动一个webserver,默认端口是8000,启动后,通过http://localhost:8000` 就能看到他的欢迎页面了
nginx 配置nginx 的配置其官方文档里也有, 这里直接把我的复制过来,我也是直接修改的官方文档
server { listen 8028; #server_name domain.tld www.domain.tld; root /data/app/symfony2.8/web; location / { # try to serve file directly, fallback to app.php try_files $uri /app.php$is_args$args; } # DEV # This rule should only be placed on your development environment # In production, don"t include this and don"t deploy app_dev.php or config.php location ~ ^/(app_dev|config).php(/|$) { fastcgi_pass 127.0.0.1:9000; fastcgi_split_path_info ^(.+.php)(/.*)$; include fastcgi_params; # When you are using symlinks to link the document root to the # current version of your application, you should pass the real # application path instead of the path to the symlink to PHP # FPM. # Otherwise, PHP"s OPcache may not properly detect changes to # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126 # for more information). fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT $realpath_root; } # PROD location ~ ^/app.php(/|$) { fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_split_path_info ^(.+.php)(/.*)$; include fastcgi_params; # When you are using symlinks to link the document root to the # current version of your application, you should pass the real # application path instead of the path to the symlink to PHP # FPM. # Otherwise, PHP"s OPcache may not properly detect changes to # your PHP files (see https://github.com/zendtech/ZendOptimizerPlus/issues/126 # for more information). fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param DOCUMENT_ROOT $realpath_root; # Prevents URIs that include the front controller. This will 404: # http://domain.tld/app.php/some-path # Remove the internal directive to allow URIs like this internal; } # return 404 for all other php files not matching the front controller # this prevents access to other php files you don"t want to be accessible. location ~ .php$ { return 404; } error_log /data/log/nginx/symfony_error.log; access_log /data/log/nginx/symfony_access.log; }
需要注意的是, nginx中包含了一个在开发环境适用的配置和一个在生产环境适用的配置,在生产华景部署的时候, 一定不要讲开发环境的配置带上去了
配置好后, 重新reload nginx,我这里监听的是虚拟机的8028端口,通过访问这个端口,也可以直接看到欢迎页面
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/21780.html
摘要:今天来写写这个框架的类加载机制版本原理在项目启动时,通过注册了要使用的类的自动加载处理方法,在类第一次被使用的时候,类文件通过该方法被引入,然后类才得以使用源码分析在的入口文件,我们找到我们随着这个路径我们找打了这个主要内容如下其中是为了注 今天来写写Symfony2.8 这个框架的类加载机制 版本 Symfony 2.8 原理 在项目启动时,Symfony 通过spl_autoloa...
摘要:一键配置宝塔面板怎么安装到数据盘教程二个命令宝塔面板怎么安装到数据盘教程二个命令今天,刚买了一台香港云服务器,系统盘是,数据盘是,安装宝塔面板之后发现磁盘的容量不对Linux宝塔面板安装傻瓜教程:宝塔Linux面板7.6.0安装教程1.介绍宝塔Linux面板7.4.5版本是基于Centos开发的,为了最好的兼容性,请优先考虑使用Centos8.x系统系统兼容性顺序:Centos8.x > C...
宝塔Linux面板支持哪些linux操作系统?宝塔Linux面板支持的Linux系统有centos、ubuntu、deepin、Alibaba Cloud Linux、debian和fedora等,今天小编来详细说下宝塔面板支持的Linux操作系统版本及系统兼容性说明:宝塔Linux面板操作系统说明宝塔Linux面板操作系统支持:centos、ubuntu、deepin、Alibaba Cloud...
阅读 3953·2021-09-22 16:03
阅读 5268·2021-09-22 15:40
阅读 1128·2021-09-06 15:02
阅读 852·2019-08-30 15:53
阅读 2156·2019-08-29 15:35
阅读 1088·2019-08-23 18:22
阅读 3318·2019-08-23 16:06
阅读 623·2019-08-23 12:27