File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -30,14 +30,31 @@ printf '| LINKSTACK v%s%*s|\n' "${v}" "$vlen" | tr ' ' " "
3030# + ---------------- + #
3131
3232echo ' + ------------------------------------------------------------------ +'
33+ echo ' | Updating Configuration: Apache Base (/etc/apache2/httpd.conf) |'
34+ echo ' | Updating Configuration: Apache SSL (/etc/apache2/conf.d/ssl.conf) |'
35+
36+ # + ------------- + #
37+ # | -- PHP.INI -- | #
38+ # + ------------- + #
39+
40+ echo ' | Updating Configuration: PHP (/etc/php83/40-custom.ini) |'
41+ # Gebe die aktuellen PHP-Einstellungen aus
42+ echo " | Setting PHP Configuration: |"
43+ echo " | upload_max_filesize = ${UPLOAD_MAX_FILESIZE} |"
44+ echo " | memory_limit = ${PHP_MEMORY_LIMIT} |"
45+ echo " | date.timezone = ${TZ} |"
46+ # Setze die PHP-Konfiguration
47+ echo " upload_max_filesize = ${UPLOAD_MAX_FILESIZE} " >> /etc/php83/conf.d/40-custom.ini
48+ echo " memory_limit = ${PHP_MEMORY_LIMIT} " >> /etc/php83/conf.d/40-custom.ini
49+ echo " date.timezone = ${TZ} " >> /etc/php83/conf.d/40-custom.ini
3350
3451# + ---------- + #
3552# | -- MISC -- | #
3653# + ---------- + #
3754
3855# Apache gets grumpy about PID files pre-existing
3956rm -f /htdocs/httpd.pid
40-
57+ echo ' | Updating Configuration: Complete | '
4158echo ' | ------------------------------------------------------------------ |'
4259echo ' | Running Apache |'
4360echo ' + ------------------------------------------------------------------ +'
You can’t perform that action at this time.
0 commit comments