summaryrefslogtreecommitdiff
path: root/http/nginx.conf
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-23 07:57:33 +0100
committerJoe Carstairs <me@joeac.net>2026-06-23 07:57:33 +0100
commitff49052baa19c95c17d8515434350076b90abefc (patch)
tree8c1b17cbbd505e9f29a89df3d0fa29aa4ba847b3 /http/nginx.conf
parent7bd5255c63366ef7b6d0ab0babd088d4d9ea93b3 (diff)
php-fpm runs on socket in /run
Diffstat (limited to 'http/nginx.conf')
-rw-r--r--http/nginx.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/http/nginx.conf b/http/nginx.conf
index 08602cc..05b6b12 100644
--- a/http/nginx.conf
+++ b/http/nginx.conf
@@ -34,7 +34,7 @@ http {
location ~ \.php$ {
root html;
- fastcgi_pass 127.0.0.1:9000;
+ fastcgi_pass unix:/run/php8.5-fpm-joeac.net-http.sock
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;