但是今天装了centos6.5,直接yum install nginx不行,要先处理下源,下面是安装完整流程,也十分简单: centos 6,先执行(过程慢点,其实可以手动下载,然后在本地运行): rpm -ivh http://nginx.org/packages/centos/6/noarch/rpms/nginx-release-centos-6-
但是今天装了centos6.5,直接yum install nginx不行,要先处理下源,下面是安装完整流程,也十分简单:
centos 6,先执行(过程慢点,其实可以手动下载,然后在本地运行):
rpm -ivh http://nginx.org/packages/centos/6/noarch/rpms/nginx-release-centos-6-0.el6.ngx.noarch.rpmyum -y install nginxyum -y php-fpmservice php-fpm restartservice nginx restartchkconfig php-fpm onchkconfig nginx on
下面是配置:
vi /etc/nginx/conf.d/default.conf
server { listen 80; server_name localhost; autoindex on; #charset koi8-r; #access_log /var/log/nginx/log/host.access.log main; location / { root /var/www/html; index index.html index.htm index.php; } location ~ \.php$ { root /var/www/html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param script_filename /var/www/html$fastcgi_script_name; include fastcgi_params; }....
以下全是#号。