Centos7+Nginx1.10.2+php-fpm基本配置phpinfo

来源:互联网 发布:二级域名推广淘宝客 编辑:程序博客网 时间:2024/05/18 06:13
server {
        listen          80;
        server_name     192.168.1.195;
        root            /data/www/default;
        index           index.php index.html;

        location / {
                root /data/www/default;
                index index.php index.html;
        }

        location ~ \.php$ {
                fastcgi_pass 127.0.0.1:9000;
                fastcgi_index index.php;
                include fastcgi.conf;
        }
}
0 0
原创粉丝点击