1.IP:Port 監聽方式
php-fpm
docker pull PHP:2.4-alpine
nginx.conf
fastcgi_pass 127.0.0.1:9000;
php-fpm 在容器裡的nginx.conf
location /php { proxy_set_header Host $host:$server_port; proxy_pass http://138.38.38.111:80/; }
2.UDS 方式監聽
php-fpm
#listen = /tmp/php-fpm.sock
nginx.conf
fastcgi_pass unix:/tmp/php-fpm.sock;
3.注意
php-fpm用ip:port方式建立連結,
nginx不要用unix socket方式建立鏈接,用ip:port方式建立連接就行。
相關推薦:《PHP教學》
以上是php 與 nginx 的兩種處理方式的詳細內容。更多資訊請關注PHP中文網其他相關文章!