this fixed it for me after an update with update.sh script:
go into the container's shell:
docker exec -it piler bash
then update the fpm version string from php8.1 to php8.3-fpm in the /etc/piler/piler-nginx.conf file:
sed -i 's/php8.1-fpm.sock/php8.3-fpm.sock/g' /etc/piler/piler-nginx.conf
and restart the nginx service inside the container:
service nginx restart
then exit fom the container shell and the web interfaces should be accessible again.
this fixed it for me after an update with update.sh script:
go into the container's shell:
docker exec -it piler bashthen update the fpm version string from php8.1 to php8.3-fpm in the
/etc/piler/piler-nginx.conffile:sed -i 's/php8.1-fpm.sock/php8.3-fpm.sock/g' /etc/piler/piler-nginx.confand restart the nginx service inside the container:
service nginx restartthen
exitfom the container shell and the web interfaces should be accessible again.