Commit 642200f4 authored by Mahmoud Aglan's avatar Mahmoud Aglan

Fix nginx: use TCP socket (127.0.0.1:9000) matching php-fpm default

The php:8.4-fpm-alpine image listens on TCP by default, not unix socket.
Co-Authored-By: 's avatarClaude Opus 4.6 <noreply@anthropic.com>
parent c9ad54a3
...@@ -15,7 +15,7 @@ server { ...@@ -15,7 +15,7 @@ server {
} }
location ~ \.php$ { location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm.sock; fastcgi_pass 127.0.0.1:9000;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params; include fastcgi_params;
fastcgi_read_timeout 60s; fastcgi_read_timeout 60s;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment