CentOS配置Nginx+Fastcgi+PHP,多网站配置

今天帮朋友配置CentOS + PHP + Nginx环境, 记录一下,希望能帮到更多伙伴

安装nginx

yum install nginx

php5.x已自带php-fpm,如没有自带

yum install php-fpm

配置nginx.conf

server {
        listen 80;
        server_name 127.0.0.1;
        server_name_in_redirect off;
        location / {
                root /var/www/html;
                index index.html index.php;
        }

}
#这步用来引入所有网站的配置
include /etc/nginx/vhost/*.conf;

请继续/etc/nginx/vhost/下的所有文件

# xxx1.com.conf
server {
        listen 80;
        server_name xxx1.com www.xxx1.com;
        access_log /etc/nginx/log/xxx1.com.log;

        location / {
                root /var/www/www.xxx1.com;
                index index.html index.php;
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /var/www/error;
        }

        location ~ \.php$ {
                fastcgi_pass    127.0.0.1:9000;
                fastcgi_index   index.php;
                fastcgi_param   SCRIPT_FILENAME /var/www/www.xxx1.com/$fastcgi_script_name;
                include fastcgi_params;
        }

}

# xxx2.com.conf
server {
        listen 80;
        server_name pet82.com www.xxx2.com;
        access_log /etc/nginx/log/xxx2.com.log;

        location / {
                root /var/www/www.xxx2.com;
                index index.php index.html;
        }

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
                root /var/www/error;
        }

        location ~.php$ {
                fastcgi_pass    127.0.0.1:9000;
                fastcgi_index   index.php;
                fastcgi_param   SCRIPT_FILENAME /var/www/www.xxx2.com/$fastcgi_script_name;
                include fastcgi_params;
        }

}

修改/etc/php-fpm.d/www.conf默认配置

# 用户和用户组都改为nginx
user = nginx
group = nginx

# 把listen = /var/run/php5-fpm.sock改为
listen = 127.0.0.1:9000

# 注释去掉
security.limit_extensions = .php .php3 .php4 .php5

然后修改网站目录权限

chown -R nginx.nginx /var/www/www.xxx1.com
chown -R nginx.nginx /var/www/www.xxx2.com

chmod -R 700 /var/www/www.xxx1.com
chmod -R 700 /var/www/www.xxx2.com

重新启动nginx和php-fpm

service nginx restart
service php-fpm restart

最后记得添加/etc/hosts

127.0.0.1 www.xxx1.com
127.0.0.1 www.xxx2.com

 

转载于:https://my.oschina.net/yehun/blog/893220

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值