91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

CentOS 編譯安裝php5.5, 并配制支持apach,nignx核心代碼

發布時間:2020-06-20 11:30:06 來源:網絡 閱讀:336 作者:jamesrh 欄目:web開發

首先是編譯準備工作:

yum groupinstall "Development tools"

然后是編譯安裝 PHP 5.5.x 需要用到的 devel 包:

yum install libxml2-devel gd-devel libmcrypt-devel libcurl-devel openssl-devel

從官方下載,解壓:

wget http://us3.php.net/get/php-5.5.5.tar.gz/from/cn2.php.net/mirror
tar -xvf php-5.5.5.tar.gz
cd php-5.5.5

編譯安裝 php 5.5 的參數:

./configure --with-apxs2=/usr/local/apache2/bin/apxs --disable-cli --enable-shared --with-libxml-dir --with-gd --with-openssl --enable-mbstring --with-mcrypt --with-mysqli --with-mysql --enable-opcache --enable-mysqlnd --enable-zip --with-zlib-dir --with-pdo-mysql --with-jpeg-dir --with-freetype-dir --with-curl --without-pdo-sqlite --without-sqlite3

我已經盡量的在參數上做了精簡,用以上參數編譯安裝好的 php 運行 wordpress, joomla, ip board 等常見的博客、論壇程序都是沒有問題的,因為有了 --disable-cli,所以就沒法 make test 了,安裝好以后也沒法 php -v 了。安裝吧:

make
make install
cp php.ini-production /usr/local/lib/php.ini
#記住上面 php.ini 的位置哦。


如是apache, 配制 apache 


是時候讓 apache 知道有 php 的存在了,在 apache 配置文件 httpd.conf 中添加:

LoadModule php5_module modules/libphp5.so
#上面那行可能在編譯安裝 php 的過程中已經由系統自動添加了
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>

OK!重啟 apache,人品好的人是不會出現問題的。



如是nignx, 配制 nignx

cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.confbak 
#備份原有配置文件
vi /etc/nginx/conf.d/default.conf 
#編輯

index index.php index.html index.htm; #增加index.php

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#

location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}

#取消FastCGI server部分location的注釋,并要注意fastcgi_param行的參數,改為$document_root$fastcgi_script_name,或者使用絕對路徑
service nginx restart #重啟nginx




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平邑县| 张家口市| 大宁县| 鄂尔多斯市| 桦南县| 吉水县| 本溪市| 长子县| 巧家县| 舒城县| 库尔勒市| 汶上县| 碌曲县| 宁武县| 孟州市| 西畴县| 昌吉市| 卓资县| 铜山县| 濮阳市| 仙游县| 郑州市| 平阳县| 乐清市| 武安市| 临泽县| 贵德县| 定安县| 永和县| 佛坪县| 钦州市| 涟水县| 永清县| 那曲县| 武冈市| 元江| 郓城县| 呼图壁县| 梁山县| 墨竹工卡县| 嘉善县|