From 901ae045c12c7a2d676ae8d8e147ae53f0601eda Mon Sep 17 00:00:00 2001 From: Tommy Date: Sun, 16 Apr 2023 03:54:09 -0400 Subject: [PATCH] Set proper /var/lib/php permission Signed-off-by: Tommy --- install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install.sh b/install.sh index 823f895..cd0723d 100644 --- a/install.sh +++ b/install.sh @@ -328,6 +328,8 @@ pm.max_children = 9 pm.process_idle_timeout = 10s pm.max_requests = 200 EOF + + chgrp -R nginx /var/lib/php/{opcache,session,wsdlcache} systemctl restart php-fpm output "Configuring Nginx web server..."