## Nginx 安装
###实验环境
1.CentOS6.5系统,阿里云服务器
2.nginx version: nginx/1.10.2
3.PHP 5.3.3 (fpm-fcgi) (built: Aug 11 2016 20:34:52)
###教程地址
* http://blog.csdn.net/keyunq/article/details/45129859
* http://www.cnblogs.com/xiaoit/p/3991037.html
###安装位置
默认安装位置:/etc/nginx/
默认网站目录:/usr/share/nginx/html
###启动:
1. /etc/init.d/nginx start # 启动Nginx服务
2. /etc/init.d/nginx stop # 停止Nginx服务
3. /etc/nginx/nginx.conf # Nginx配置文件位置
### 自己的总结
1. nginx 独立安装,安装位置在/etc/nginx,网站根目录默认为:/usr/share/nginx/html
2. php独立安装,配置文件在/etc/php.ini里面
3. nginx的配置文件在:/etc/nginx/nginx.conf 和 /etc/nginx/conf/default.conf中
4. default.conf是用于配置server服务器的,所以给nginx增加php能力,就在这个文件中配置php的位置
5. default.conf 在/etc/nginx/nginx.conf被引用
6. 通过安装php-fpm,并在启动改进程于 127.0.0.1:9000 ,然后在default.conf中配置nginx将php脚本交给phpfpm来处理,从而使得nginx支持php
7. 关键配置 default.config
###修改nginx配置文件,添加fastcgi支持
~~~
#vi /etc/nginx/conf/default.conf
index index.php index.html index.htm; //加入index.php
location ~ \.php$ {
root /usr/share/nginx/html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
~~~