Nginx と PHP 間の 2 つの通信方法: unix ソケットと tcp ソケット
(推奨チュートリアル: nginx チュートリアル)
# # 1. 両方の Nginx 設定unix ソケットnginx 設定ファイルで実行されている php-fpm の pid ファイル アドレスを入力する必要があります。location ~ \.php$ { include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; }
location ~ \.php$ { include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; }
以上がnginxとphpの間の2つの通信方法は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。