Skip to content

Commit 02b2049

Browse files
Clean up docker-entrypoint.sh and set PHP config
Removed commented lines and updated PHP configuration output.
1 parent 1eed000 commit 02b2049

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

docker-entrypoint.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,11 @@ echo '| Updating Configuration: Apache SSL (/etc/apache2/conf.d/ssl.conf) |'
3838
# + ------------- + #
3939

4040
echo '| Updating Configuration: PHP (/etc/php83/40-custom.ini) |'
41-
# Gebe die aktuellen PHP-Einstellungen aus
4241
echo "| Setting PHP Configuration: |"
4342
echo "| upload_max_filesize = ${UPLOAD_MAX_FILESIZE} |"
4443
echo "| memory_limit = ${PHP_MEMORY_LIMIT} |"
4544
echo "| date.timezone = ${TZ} |"
46-
# Setze die PHP-Konfiguration
45+
4746
echo "upload_max_filesize = ${UPLOAD_MAX_FILESIZE}" >> /etc/php83/conf.d/40-custom.ini
4847
echo "memory_limit = ${PHP_MEMORY_LIMIT}" >> /etc/php83/conf.d/40-custom.ini
4948
echo "date.timezone = ${TZ}" >> /etc/php83/conf.d/40-custom.ini

0 commit comments

Comments
 (0)