centos安裝php fpm的方法:先透過「yum install -y php-fpm」安裝「php-fpm」;然後透過「systemctl start php-fpm」啟動「php-fpm」即可。
推薦:《PHP影片教學》
本教學操作環境:windows7系統、PHP5.6版,此方法適用於所有品牌電腦。
centos7系統下安裝php-fpm並設定nginx支援並開啟網站gzip壓縮
註:這裡不介紹nginx的安裝。以下教學預設已安裝nginx。
1.
yum install -y php-fpm
yum install php-pdo yum install php-mysql
yum install php-xml
yum安裝預設版本是php5.4,要使用更高版本可使用yum search all php-fpm安裝自己需要的版本.
2 .
啟動php-fpm(註:php-fpm預設埠9000)
systemctl start php-fpm
3.
設定nginx使支援php-fpm並開始網站gzip壓縮,修改nginx.cong:
具體如下:
# 开启gzip压缩 gzip on; gzip_min_length 1k; gzip_buffers 4 16k; # gzip_http_version 1.0; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/x-httpd-php image/jpeg image/gif image/png; gzip_vary off; gzip_disable "MSIE [1-6]\.";
location / { root /var/www/html; index index.php index.html index.htm; } #此配置使nginx支持php location ~ \.php$ { root /var/www/html; #指定php的根目录 fastcgi_pass 127.0.0.1:9000;#php-fpm的默认端口是9000 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
然後重啟nginx即可! 附註:php-fpm預設根目錄為:/var/www/html
#以上是centos安裝php fpm的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!