红联Linux门户
Linux帮助

ubuntu15.04手动安装nginx1.93并配置php

发布时间:2015-08-05 15:13:04来源:csdn作者:fthvgb1

做了个总结:


1.先安装php5,已安装路过这个步

sudo apt-get install php5-fpm 


2.下载最新版本的ngnix,并解压

官网为:http://nginx.org/


3.在解压的那个文件夹,命令行依次输入

./configure 
make 
sudo make install 

如果报错先安装libpcre3 libpcre3-dev zlib1g-dev再继续

安装好了后,这个版本的各种文件包括(配置、站点等)都生成在/usr/local/nginx内


4.到usr/local/nginx/conf内修改nginx.conf文件,只需修改location ~ \.php${...}

location ~ \.php$ { 
root           html; 
fastcgi_pass   127.0.0.1:9000; 
fastcgi_index  index.php; 
fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx/html$fastcgi_script_name; 
include        fastcgi_params; 

如果想使用php文件做默认的主页,可以修改location / {...}

location / { 
root   html ; 
index  index.html index.htm index.php; 


5.启动nginx

到/usr/local/nginx/sbin/内命令行输入

sudo ./nginx  

即可启动,启动后命令行输入

ps -ef | grep nginx 

会看到两个线程master process 和 worker process说明nginx正常运行。


如何在Ubuntu 15.04中安装nginx和google pagespeed:http://www.linuxdiyf.com/linux/12725.html

ubuntu15.04 nginx1.6.5配置虚拟主机:http://www.linuxdiyf.com/linux/12585.html

ubuntu 15.04手动安装nginx 1.9.0:http://www.linuxdiyf.com/linux/12038.html