1. 程式人生 > >PHP+PHP-fpm+PHP-cgi+nginx+yii2

PHP+PHP-fpm+PHP-cgi+nginx+yii2

開啟nginx,再開啟php-fpm,然後配置nginx.conf:

location / {
        root   /home/dai/myPHP;
        index  index.html index.htm index.php;
    }

location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /home/dai/myPHP/$fastcgi_script_name;
        include        fastcgi_params;
    }

同時,為保證js和css被引用,在nginx.conf中加入:

user root;

以保證nginx的使用者有許可權讀取web目錄。

然後執行php-cgi -b 9000,php執行。