At your local TYPO3 development, do you want to know how to allow DDEV Share Access at TYPO3 Local Development with your team? By default, DDEV is designed to access and work only on local machine, but if you want give access to your DDEV instances to your colleague, like Frontend or QA guys, then follow these steps.
Step 1: Upgrade latest DDEV (atleast v.11.0)
// Shutdown all running DDEV TYPO3 Instances
ddev poweroff or ddev stop --all --stop-ssh-agent
// Update to latest DDEV
curl -L https://raw.githubusercontent.com/drud/ddev/master/scripts/install_ddev.sh | bash
Step 2: Allow DDEV Share Access
ddev poweroff
ddev config global --router-bind-all-interfaces=true
ddev start
Post a Comment