Skip to content

Instantly share code, notes, and snippets.

@chriswales95
Created January 23, 2020 21:37
Show Gist options
  • Save chriswales95/0e3dbfc71804b3867b45505361477637 to your computer and use it in GitHub Desktop.
Save chriswales95/0e3dbfc71804b3867b45505361477637 to your computer and use it in GitHub Desktop.
lando xdebug
tooling:
xdebug-on:
service: appserver
description: Enable xdebug for apache.
cmd: "docker-php-ext-enable xdebug && /etc/init.d/apache2 reload"
user: root
xdebug-off:
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment