Set local issuer certificate; symlink the mods, not the entire data directory...

This commit is contained in:
DaneEveritt 2022-05-29 16:08:41 -04:00
parent fe343a5b4e
commit 7580767215
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 5 additions and 2 deletions

View File

@ -14,7 +14,7 @@ if [ -d "/etc/php/mods-available" ]; then
if [ -d "/etc/php/mods-available/fpm" ]; then
ln -s /etc/php/mods-available/fpm/* /etc/php/8.1/fpm/conf.d
fi
find . -maxdepth 1 -type f -print0 | while read -d $'\0' file
find /etc/php/mods-available/. -maxdepth 1 -type f -print0 | while read -d $'\0' file
do
ln -s "$file" /etc/php/8.1/cli/conf.d/
ln -s "$file" /etc/php/8.1/fpm/conf.d/

View File

@ -13,4 +13,7 @@ xdebug.client_host=host.docker.internal
xdebug.client_port=9003
[curl]
curl.cainfo = /etc/certs/root_ca.pem
curl.cainfo = /etc/certs/root_ca.pem
[openssl]
openssl.cafile = /etc/certs/root_ca.pem