correct path to php-fpm socket

This commit is contained in:
Boudewijn 2025-03-04 16:51:54 +01:00
parent b9301a677f
commit cb9c2d8f77

View file

@ -8,7 +8,7 @@ location / {
location ~ \.php$ {
root __INSTALL_DIR__/public;
index index.html index.htm index.php;
fastcgi_pass unix:/var/run/php__PHP_VERSION__-fpm.sock;
fastcgi_pass unix:/var/run/php/php__PHP_VERSION__-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;