共计 3953 个字符,预计需要花费 10 分钟才能阅读完成。
一般我们都是采用 Apache 作为 PHP 的解析服务器,这次则是采用 Nginx 这个强大的反向代理服务器来搭建 PHP 服务器。下面就以 Linux 发行版 Ubuntu 为例搭建一个 Nginx 的 PHP 服务器。
首先下载安装 Nginx
sudo apt-get install nginx
安装完成后,启动 Nginx
sudo /etc/init.d/nginx start
这时候打开浏览器里输入 http://localhost/ 就可以看到 Welcome to nginx! 的页面了,说明我们的 Nginx 服务器安装成功
接下来安装 PHP5
sudo apt-get install php5-fpm
安装成功后,我们要修改 Nginx 的虚拟机配置,让浏览器请求的 php 文件可以被 php cgi 解析。编辑 Nginx 虚拟机配置文件 /etc/nginx/sites-available/default
sudo vim /etc/nginx/sites-available/default
然后把里面的配置修改为如下配置内容:
# You may add here your
# server {
# …
# }
# statements for each of your virtual hosts to this file
##
# You should look at the following URL’s in order to grasp a solid understanding
# of Nginx configuration files in order to fully unleash the power of Nginx.
# http://wiki.nginx.org/Pitfalls
# http://wiki.nginx.org/QuickStart
# http://wiki.nginx.org/Configuration
#
# Generally, you will want to move this file somewhere, and start with a clean
# file but keep this around for reference. Or just disable in sites-enabled.
#
# Please see /usr/share/doc/nginx-doc/examples/ for more detailed examples.
##
server {
listen 80; ## listen for ipv4; this line is default and implied
#listen [::]:80 default ipv6only=on; ## listen for ipv6
root /usr/share/nginx/www;
index index.html index.htm index.php;
# Make site accessible from http://localhost/
server_name localhost;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
deny all;
}
# Only for nginx-naxsi : process denied requests
#location /RequestDenied {
# For example, return an error code
#return 418;
# }
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/www;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have “cgi.fix_pathinfo = 0;” in php.ini
# With php5-cgi alone:
fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
#fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache’s document root
# concurs with nginx’s one
#
location ~ /\.ht {
deny all;
}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# root html;
# index index.html index.htm;
#
# location / {
# try_files $uri $uri/ /index.html;
# }
# }
# HTTPS server
#
#server {
# listen 443;
# server_name localhost;
#
# root html;
# index index.html index.htm;
#
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
#
# ssl_session_timeout 5m;
#
# ssl_protocols SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;
# ssl_prefer_server_ciphers on;
#
# location / {
# try_files $uri $uri/ /index.html;
# }
# }
重新加载我们刚刚更改的 Nginx 配置
sudo /etc/init.d/nginx reload
然后我们在 /usr/share/nginx/www/ 目录下新建一个 phpinfo.php 文件,可以查看 php 的配置和环境信息
sudo vim /usr/share/nginx/www/phpinfo.php
在 phpinfo.php 中录入如下内容:
<?php
phpinfo();
?>
我们在浏览器里输入 http://localhost/phpinfo.php 就可以看到 PHP 的信息页了,有版本等信息。
PHP5 还有很多支持的模块,如果需要的话可以选择安装,一般这些模块都是 php5- 开头,比如 php5-mysql,在 Ubuntu 里安装他只需
sudo apt-get install php5-mysql
PHP 的模块安装后别忘记重启 PHP5 哦,执行如下命令可以重启
sudo /etc/init.d/php5-fpm restart
更多 Nginx 相关教程见以下内容 :
CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm
使用 Nginx 搭建 WEB 服务器 http://www.linuxidc.com/Linux/2013-09/89768.htm
搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm
CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm
CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm
CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm
Nginx 安装配置使用详细笔记 http://www.linuxidc.com/Linux/2014-07/104499.htm
Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm
Nginx 的详细介绍 :请点这里
Nginx 的下载地址 :请点这里
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2015-08/121994.htm