Adjust deployer config to new hosting environment

This commit is contained in:
Björn Fromme
2019-03-16 14:54:22 +01:00
parent 6ae4a6a0a1
commit 34e9550bca
2 changed files with 63 additions and 79 deletions
+9 -6
View File
@@ -18,12 +18,15 @@ add('shared_files', [
]);
host('production')
->hostname('ep-reisen.de')
->user('ssh-438277-ep-reisen')
->hostname('host.3punkt0.com')
->user('ep-reisen')
->forwardAgent()
->set('deploy_path', '/kunden/13174_42857/kunden/typo3sites/ep-reisen/{{application}}')
->set('bin/php', '/usr/local/bin/php7-72LATEST-CLI -dapc.enable_cli=on -dextension_dir=/usr/local/lib/php_modules/7-72LATEST -dextension=apcu.so')
->set('http_user', 'ssh-438277-ep-reisen')
->multiplexing()
->set('deploy_path', '~/{{application}}')
->set('bin/php', '~/bin/php')
->set('http_user', 'ep-reisen')
->set('writable_mode', 'chmod')
->set('bin/composer', '/usr/bin/composer')
;
task('build', function () {
@@ -63,7 +66,7 @@ task('database:update', function () {
});
before('deploy:symlink', 'assets');
//before('deploy:symlink', 'database:update');
before('deploy:symlink', 'database:update');
before('cleanup', 'caches:flush');
before('cleanup', 'languages:update');