centos7系統下安裝php-fpm並配置nginx支援並開啟網站gzip壓縮
阿新 • • 發佈:2018-11-04
注:此處不介紹nginx的安裝。以下教程預設已安裝nginx。
1.
yum install -y php-fpm
yum install php-pdo yum install php-mysql
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_buffers4 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