apache 部署多 PHP 版本、多專案以及二級域名

北極冰發表於2018-01-24

本地開發環境已經用homestead了,但是還是記錄一下,也許有朋友會需要。主要是安裝 mod_fcgid模組(linux),(windows版模組下載地址)以及配置檔案的變動。
這裡就不記錄安裝過程了,簡單記錄一下配置檔案,方便日後複製貼上。windows和linux略有不同,不過appserv比較貼近原生,感覺差別不大。
一.httpd.conf

    AddHandler fcgid-script .php
    FcgidInitialEnv PHP_FCGI_MAX_REQUESTS      1000
    FcgidMaxRequestsPerProcess       1000
    FcgidMaxProcesses             15
    FcgidIOTimeout             300
    FcgidIdleTimeout                300
    AddType application/x-httpd-php .php
    #預設虛擬主機,其中FcgidInitialEnv是php.ini的存放目錄,Linux下通常不需要
    FcgidInitialEnv PHPRC "D:/AppServ/php5/"
    FcgidWrapper "D:/AppServ/php5/php-cgi.exe" .php

二.httpd-vhosts.conf

<VirtualHost ip:80>
    ServerName www.abc.com
    DocumentRoot "/data/www/www.abc.com"
    <Directory "/data/www/www.abc.com">
        Options -Indexes +FollowSymLinks +ExecCGI
        AllowOverride All
        Require all granted
    </Directory>
    FcgidInitialEnv PHPRC "D:/AppServ/php7"
    FcgidWrapper "D:/AppServ/php7/php-cgi.exe" .php
</VirtualHost>
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章