[root@nginxphp ~]# uname -a
linux nginxphp 3.10.0-514.el7.x86_64
[root@nginxphp ~]# cat /etc/redhat-release
centos linux release 7.3.1611 (core)
yum install nginx -y
nginx -v
#nginx version: nginx/1.12.2
systemctl start nginx
systemctl enable nginx
這樣就可以訪問nginx了。
#安裝php支援
yum install php-tidy php-common php-devel php-fpm php-mysql
#安裝php-fpm
systemctl start php-fpm
systemctl enable php-fpm
php-fpm -v
#php 5.4.16 (fpm-fcgi) (built: oct 30 2018 19:32:20)
mv /etc/nginx/nginx.conf /etc/nginx/nginx.confbak
#備份配置檔案
cp /etc/nginx/nginx.conf.default /etc/nginx/nginx.conf
#複製預設配置檔案
vi /etc/nginx/nginx.conf
#在root裡面新增index.php
location /
#把php 前面的#去掉。 並修改 root和fastcgi_param
location ~ .php$
cd /usr/share/nginx/html/
cat > info.php << eof
<?php
phpinfo();
?>
eofsystemctl restart php-fpm
systemctl restart nginx
開啟瀏覽器:
會出現php資訊頁。環境搭建成功。
Linux下 nginx php環境搭建
一 安裝nginx 1.在 etc yum.repos.d 目錄下建立以檔案nginx.repo vi etc yum.repos.d nginx.repo 內容如下 nginx name nginx repo baseurl gpgcheck 0 enabled 1 2.安裝nginx yum i...
Linux下 nginx php 環境搭建
一 安裝nginx 1.在 etc yum.repos.d 目錄下建立以檔案 nginx.repo vi etc yum.repos.d nginx.repo 內容如下 nginx name nginx repo baseurl gpgcheck 0 enabled 1 2.安裝nginx yum ...
Linux下 nginx php 環境搭建
一 安裝nginx 1.在 etc yum.repos.d 目錄下建立以檔案 nginx.repo vi etc yum.repos.d nginx.repo 內容如下 nginx name nginx repo baseurl gpgcheck 0 enabled 1 2.安裝nginx yum ...