CT's Nextcloud, Freshrss.heimdall & mailbackup: Refractored PHP Installation

Now using external `AlpinePHPTool`  script for installing/configuring php.
This wil make upgrading PHP on existing containers automaticaly plausible/easier.

Removed php packages from alpine.yaml and moved them to CT-Files `Config/php.pkglist`
Remove PHP configurations steps from CT's init.sh and integrated them in  ` AlpinePHPTool`
Removed PHP timezone configuration files and intergradeded them in `AlpinePHPTool`
Updated
This commit is contained in:
2024-07-21 15:21:16 +02:00
parent fd00751efa
commit a41c5bef3c
21 changed files with 222 additions and 123 deletions

View File

@@ -37,7 +37,7 @@ http {
}
location ~ \.php$ {
include fastcgi_params;
fastcgi_pass unix:/run/php-fpm83/php-fpm.sock;
fastcgi_pass unix:/run/php-fpmPHPver/php-fpm.sock;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;