WindowsでのNginx+PHP運用環境の構築

821 ワード

1.PHPを解凍し、phpを修正する.iniファイル
cgi.fix_pathinfo = 1
extension_dir = "D:/php-5.6.12/ext"

注意:個人のインストールディレクトリに基づいて変更
2、CGI方式でPHPを起動する
php-cgi.exe -b 127.0.0.1:9000 -c php.ini

3、インストールNginxを解凍し、conf/nginxを修正する.confファイル
location / {
    root   html;
    index  index.php index.html index.htm;
}
location ~ \.php$ {
    root    html;
    fastcgi_pass    127.0.0.1:9000;
    fastcgi_index    index.php;
    fastcgi_param    SCRIPT_FILENAME  $document_root$fastcgi_script_name;
    include    fastcgi_params;
}

4、Nginxサーバーの起動
start nginx

5、Nginxサービスを停止する
nginx -s stop

6、Nginxプロファイルの再ロード
nginx -s reload