注:使用的是 mac
1生音、阿里云服務(wù)器 centos6.0+ 系統(tǒng)
2、安裝 php + php-fpm
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-gd.x86_64 php56w-ldap.x86_64 php56w-mbstring.x86_64 php56w-mcrypt.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64
yum install php56w-fpm
php -v # 查看 php 版本
service php-fpm status # 查看 php-fpm 狀態(tài)
能成功顯示相應(yīng)信息則為成功:
3晌杰、安裝 Nginx
rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm
yum -y install nginx
service nginx status # 查看 nginx 狀態(tài)
能成功顯示相應(yīng)信息則為成功
注:可以設(shè)置 nginx php-fpm 開機(jī)啟動
chkconfig php-fpm on
chkconfig nginx on
4、啟動 nginx + php-fpm
service nginx start
service php-fpm start
find / -name nginx.conf # 找到 nginx 的配置文件
vi /etc/nginx/nginx.conf # 打開配置文件
可以看到筷弦,下面引入了其他的配置文件:
:q! # 退出查看
cd /etc/nginx/conf.d/ # 進(jìn)入配置文件夾
ls # 查看目錄下的所有文件肋演,發(fā)現(xiàn)有一個默認(rèn)配置文件
vi default.conf # 查看文件
注意:
1、服務(wù)器根目錄地址:/usr/share/nginx/html
2烂琴、默認(rèn)讀取 index.html index.htm;
改為:index.html index.htm index.php;
3爹殊、放開 php 解析的的注釋 : 去掉前面的 # 號
4、修改 php 地址為服務(wù)器地址 : html 改為 /usr/share/nginx/html
5奸绷、修改php 的解析地址: /scripts 改為 $document_root
i # 進(jìn)入編輯模式
『進(jìn)行修改』
按 esc
:wq # 保存并退出
下面為改好的文件內(nèi)容:
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.html index.htm index.php;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
service nginx restart # 重啟nginx
上面有查看到服務(wù)器根目錄梗夸,進(jìn)入:
cd /usr/share/nginx/html
vi test.php # 創(chuàng)建test.php 文件
i # 進(jìn)入編輯模式
輸入下面代碼:
<?php phpinfo(); ?>
按esc # 退出編輯模式
:wq # 保存退出
訪問域名/test.php,能看到php的相關(guān)信息則為成功
做為在線git倉庫