mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-06 09:02:59 +01:00
16 lines
313 B
Bash
16 lines
313 B
Bash
#!/bin/bash
|
|
|
|
usermod -u "${HOST_USER_ID}" www-data
|
|
groupmod -g "${HOST_USER_ID}" www-data
|
|
|
|
chgrp -hR www-data /var/www/html
|
|
chmod g+rwx /var/www/html/conf
|
|
|
|
if [ ! -f /usr/local/etc/php/php.ini ]; then
|
|
cat <<EOF > /usr/local/etc/php/php.ini
|
|
date.timezone = $PHP_INI_DATE_TIMEZONE
|
|
EOF
|
|
fi
|
|
|
|
exec apache2-foreground
|