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 的兩種處理方式的詳細內容,更多請關注TW511.COM其它相關文章!