国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Linux 安裝 Symfony2.8

Yang_River / 707人閱讀

摘要:環境說明操作系統安裝準備均使用安裝至少要有個的環境是少不了了安裝步驟下載官方命令工具創建項目這里執行項目創建時,會從官網下載源碼包,執行完后就能在當前目錄看到了這里我創建了一個新的項目叫,最后的不是項目名字中的是要下載指定的版本的源

環境說明 操作系統
tony@ubuntu:~$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.2 LTS
Release:        14.04
Codename:       trusty
Symfony
symfony2.8
安裝準備

均使用 apt-get 安裝

PHP5.4

至少要有個PHP5.4的環境

nginx

web 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端口,通過訪問這個端口,也可以直接看到歡迎頁面

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/21780.html

相關文章

  • Symfony2.8 源碼分析之類的加載

    摘要:今天來寫寫這個框架的類加載機制版本原理在項目啟動時,通過注冊了要使用的類的自動加載處理方法,在類第一次被使用的時候,類文件通過該方法被引入,然后類才得以使用源碼分析在的入口文件,我們找到我們隨著這個路徑我們找打了這個主要內容如下其中是為了注 今天來寫寫Symfony2.8 這個框架的類加載機制 版本 Symfony 2.8 原理 在項目啟動時,Symfony 通過spl_autoloa...

    Blackjun 評論0 收藏0
  • linux寶塔面板安裝傻瓜教程:寶塔Linux面板7.6.0安裝教程

    摘要:一鍵配置寶塔面板怎么安裝到數據盤教程二個命令寶塔面板怎么安裝到數據盤教程二個命令今天,剛買了一臺香港云服務器,系統盤是,數據盤是,安裝寶塔面板之后發現磁盤的容量不對Linux寶塔面板安裝傻瓜教程:寶塔Linux面板7.6.0安裝教程1.介紹寶塔Linux面板7.4.5版本是基于Centos開發的,為了最好的兼容性,請優先考慮使用Centos8.x系統系統兼容性順序:Centos8.x > C...

    番茄西紅柿 評論0 收藏2637
  • 寶塔Linux面板支持哪些Linux操作系統?Centos、Ubuntu、Deepin、Debian

    寶塔Linux面板支持哪些linux操作系統?寶塔Linux面板支持的Linux系統有centos、ubuntu、deepin、Alibaba Cloud Linux、debian和fedora等,今天小編來詳細說下寶塔面板支持的Linux操作系統版本及系統兼容性說明:寶塔Linux面板操作系統說明寶塔Linux面板操作系統支持:centos、ubuntu、deepin、Alibaba Cloud...

    番茄西紅柿 評論0 收藏2637

發表評論

0條評論

Yang_River

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<