Skip to content

Commit b7c7963

Browse files
authored
Merge pull request #5 from millerp/master
Reduce xdebug max_depth
2 parents ceac9c1 + 88a25ed commit b7c7963

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apache-run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
if [[ $XDEBUG_ENABLED == true ]]; then
44
echo "zend_extension = /usr/local/lib/php/extensions/no-debug-non-zts-20160303/xdebug.so" > /usr/local/etc/php/conf.d/xdebug.ini
5-
echo "xdebug.var_display_max_depth=15" >> /usr/local/etc/php/conf.d/xdebug.ini
5+
echo "xdebug.var_display_max_depth=5" >> /usr/local/etc/php/conf.d/xdebug.ini
66
fi
77

88
usermod -u 1000 www-data \
99
&& cd /var/www/html && composer install && rm -rf var/cache/* var/logs/* \
1010
&& chown -R www-data:www-data /var/www/html/var/cache && chmod 777 /var/www/html/var/cache \
1111
&& chown -R www-data:www-data /var/www/html/var/logs && chmod 777 /var/www/html/var/logs \
12-
&& apache2-foreground
12+
&& apache2-foreground

0 commit comments

Comments
 (0)