easy-deploy-bundle
easy-deploy-bundle copied to clipboard
Configure deployDir per server
I was trying to deploy my application to multiple production servers, which each have different deployDirs. Is that possible?
This is what I found in the documentation:
return $this->getConfigBuilder() ->server('[email protected]') ->server('[email protected]') ->deployDir('/var/www/symfony-demo');
But that would set the deployDir for both servers, right?
+1