We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link to the page that needs to be updated or changed. https://docs.lando.dev/config/platformsh.html#xdebug
Describe the change you'd like The example custom xdebug configuration is not picked up by lando.
config: id: PROJECT_ID overrides: app: runtime: extensions: - redis - xdebug php: # XDEBUG 2 xdebug.remote_enable: 1 xdebug.remote_mode: req xdebug.remote_port: 9000 xdebug.remote_connect_back: 0
After placing the configuration in many different places, the following location was discovered to work correctly.
name: PROJECT_ID config: variables: app: php: xdebug.remote_enable: 1 xdebug.remote_mode: req xdebug.remote_port: 9000 xdebug.remote_connect_back: 0 overrides: app: runtime: extensions: - redis - xdebug
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Link to the page that needs to be updated or changed.
https://docs.lando.dev/config/platformsh.html#xdebug
Describe the change you'd like
The example custom xdebug configuration is not picked up by lando.
After placing the configuration in many different places, the following location was discovered to work correctly.
The text was updated successfully, but these errors were encountered: