Enable/Disable Xdebug in Lando on the fly.
# Custom Lando commands tooling: # xdebug: https://github.com/lando/lando/issues/1668#issuecomment-507191275 xon: service: appserver description: Enable xdebug for apache. cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload" user: root xoff: service: appserver description: Disable xdebug for apache. cmd: "rm /usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini && /etc/init.d/apache2 reload" user: root