在Ubuntu 14.04 LTS上安装使用PHP5(和PHP-FPM)和MySQL支持(LEMP)的Nginx
Nginx (发音为“引擎x”)是一个免费的,开放源码的高性能HTTP服务器。 Nginx以其稳定性,丰富的功能集,简单的配置和低资源消耗而闻名。 本教程将介绍如何在支持PHP5(通过PHP-FPM )和MySQL支持(LEMP = L inux + nginx(发音为“ e ngine x”)+ M ySQL + P HP的Ubuntu 14.04服务器上安装Nginx。
我不会保证这将为您工作!
1初步说明
在本教程中,我使用IP地址为192.168.0.100
的hostname server1.example.com
。 这些设置可能会有所不同,因此您必须在适当的情况下更换它们。
我使用root权限运行本教程中的所有步骤,因此请确保以root用户身份登录:
sudo su
2安装MySQL 5
为了安装MySQL,我们运行
apt-get install mysql-server mysql-client
您将被要求为MySQL root用户提供密码 - 此密码对用户root @ localhost
以及root@server1.example.com有效
,因此我们不必在以后手动指定MySQL根密码:
MySQL“root”用户的新密码:
< - yourrootsqlpassword
重复MySQL“root”用户的密码:
< - yourrootsqlpassword
3安装Nginx
Nginx可用作Ubuntu 14.04的一个包,我们可以安装,因为默认情况下安装Apache2,所以我们先删除它,然后安装nginx:
service apache2 stop
update-rc.d -f apache2 remove
apt-get remove apache2
apt-get install nginx
之后启动nginx:
service nginx start
在浏览器中输入您的Web服务器的IP地址或主机名(例如http://192.168.0.100
),您应该看到以下页面:
Ubuntu 14.04上的默认nginx文档根目录是/ usr / share / nginx / html
。
4安装PHP5
我们可以通过PHP-FPM使PHP5在nginx中工作(PHP-FPM(FastCGI Process Manager)是一种替代的PHP FastCGI实现,其中一些额外的功能对任何大小的网站尤其是繁忙的站点有用),我们安装如下:
apt-get install php5-fpm
PHP-FPM是一个守护进程(具有init脚本php5-fpm
),它在套接字/var/run/php5-fpm.sock
上运行FastCGI服务器。
5配置nginx
nginx配置在我们现在打开的/etc/nginx/nginx.conf
中:
vi /etc/nginx/nginx.conf
配置很容易理解(您可以在这里了解更多信息: http : //wiki.nginx.org/NginxFullExample ,这里: http : //wiki.nginx.org/NginxFullExample2 )
首先(这是可选的)调整工作进程的数量并将keepalive_timeout设置为合理
的值:
[...] worker_processes 4; [...] keepalive_timeout 2; [...] |
虚拟主机在server {}
容器中定义。 默认的vhost在文件/ etc / nginx / sites-available / default中定义
- 让我们修改如下:
vi /etc/nginx/sites-available/default
[...] server { listen 80; listen [::]:80 default_server ipv6only=on; root /usr/share/nginx/html; index index.php index.html index.htm; # Make site accessible from http://localhost/ server_name _; location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. 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; allow ::1; deny all; } # Only for nginx-naxsi used with nginx-naxsi-ui : process denied requests #location /RequestDenied { # proxy_pass http://127.0.0.1:8080; #} #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; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { try_files $uri =404; 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; } } [...] |
取消注释两个监听
行使nginx监听端口80 IPv4 和 IPv6。
服务器名称 _;
使它成为默认的catchall vhost(当然,您也可以像www.example.com
一样指定一个主机名)。
我已经将index.php
添加到索引
行。 root / usr / share / nginx / html;
意味着文档根目录是/ usr / share / nginx / html
。
PHP的重要部分是位置〜\ .php $ {}
节。 取消注释以启用它。 请注意,我添加了try_files $ uri = 404;
以防止零日漏洞(请参阅http://wiki.nginx.org/Pitfalls#Passing_Uncontrolled_Requests_to_PHP和http://forum.nginx.org/read.php?2,88845,page=3 )。
现在保存文件并重新加载nginx:
service nginx reload
接下来打开/etc/php5/fpm/php.ini
...
vi /etc/php5/fpm/php.ini
...并设置cgi.fix_pathinfo = 0
:
[...] ; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI. PHP's ; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok ; what PATH_INFO is. For more information on PATH_INFO, see the cgi specs. Setting ; this to 1 will cause PHP CGI to fix its paths to conform to the spec. A setting ; of zero causes PHP to behave as before. Default is 1. You should fix your scripts ; to use SCRIPT_FILENAME rather than PATH_TRANSLATED. ; http://php.net/cgi.fix-pathinfo cgi.fix_pathinfo=0 [...] |
重新加载PHP-FPM:
service php5-fpm reload
现在在文件root / usr / share / nginx / html中
创建以下PHP文件:
vi /usr/share/nginx/html/info.php
<?php phpinfo(); ?> |
现在我们在浏览器中调用该文件(例如http://192.168.0.100/info.php
):
如您所见,PHP5正在工作,它正在通过FPM / FastCGI进行工作,如Server API
行所示。 如果您进一步向下滚动,您将看到在PHP5中已启用的所有模块。 MySQL没有列出,这意味着我们还没有在PHP5中支持MySQL。
6在PHP5中获取MySQL支持
要在PHP中获得MySQL支持,我们可以安装php5-mysql
包。 安装一些其他PHP5模块是一个好主意,您可能需要它们用于应用程序。 您可以搜索可用的PHP5模块,如下所示:
apt-cache search php5
选择您需要的并安装它们:
apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
APC是一个免费开放的PHP操作码cacher,用于缓存和优化PHP中间代码。 它类似于其他PHP操作码cacher,如eAccelerator和Xcache。 强烈建议您安装其中一个以加快您的PHP页面。
APC可以安装如下:
apt-get install php-apc
现在重新加载PHP-FPM:
service php5-fpm reload
现在在您的浏览器中重新加载http://192.168.0.100/info.php
并再次向下滚动到模块部分。 您现在应该会在那里找到很多新的模块,包括MySQL模块:
7使PHP-FPM使用TCP连接
默认情况下,PHP-FPM正在监听套接字/var/run/php5-fpm.sock
。 也可以使PHP-FPM使用TCP连接。 为此,请打开/etc/php5/fpm/pool.d/www.conf
...
vi /etc/php5/fpm/pool.d/www.conf
...并让听力
线看起来如下:
[...] ;listen = /var/run/php5-fpm.sock listen = 127.0.0.1:9000 [...] |
这将使PHP-FPM在IP 127.0.0.1
( localhost
)上的端口9000
上监听
。 确保使用系统上未使用的端口。
然后重新加载PHP-FPM:
php5-fpm reload
接下来,通过你的nginx配置和你所有的vhosts,并更改行fastcgi_pass unix:/var/run/php5-fpm.sock;
到fastcgi_pass 127.0.0.1:9000;
,例如:
vi /etc/nginx/sites-available/default
[...] location ~ \.php$ { try_files $uri =404; 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; } [...] |
最后重新加载nginx:
service nginx reload
8个CGI / Perl脚本
如果您要使用nginx提供CGI / Perl脚本,请阅读本教程: 在Debian Squeeze / Ubuntu 11.04上为Nginx提供CGI脚本
推荐的方法是使用fcgiwrap
(第4章)。
9链接
- nginx: http : //nginx.net/
- nginx维基: http : //wiki.codemongers.com/Main
- PHP: http : //www.php.net/
- PHP-FPM: http : //php-fpm.org/
- MySQL: http : //www.mysql.com/
- Ubuntu: http : //www.ubuntu.com/