Adjust deployer config to new hosting environment

This commit is contained in:
Björn Fromme
2020-03-09 10:48:59 +01:00
parent 6b1c162fd3
commit 4baf1e485a
+6 -6
View File
@@ -23,15 +23,15 @@ add('shared_dirs', [
]);
host('production')
->hostname('host.3punkt0.com')
->user('ep-reisen')
->hostname('185.237.67.190')
->user('p546128')
->forwardAgent()
->multiplexing()
->set('deploy_path', '~/{{application}}')
->set('bin/php', '~/bin/php')
->set('http_user', 'ep-reisen')
->set('deploy_path', '/home/www/p546128/html/{{application}}')
->set('bin/php', '/usr/local/bin/php')
->set('http_user', 'p546128')
->set('writable_mode', 'chmod')
->set('bin/composer', '/usr/bin/composer')
->set('bin/composer', '/usr/local/bin/composer')
;
task('build', function () {