From 6cdbca9c086aa08a1ad96a579134d877d7891251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Thu, 3 Sep 2026 10:58:03 +0200 Subject: [PATCH] feat: adjust deployer config to new hetzner host --- deploy.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/deploy.php b/deploy.php index dd01299..67e9f99 100644 --- a/deploy.php +++ b/deploy.php @@ -84,6 +84,19 @@ host('prod') ->set('cachetool_args', '--web=SymfonyHttpClient --web-path={{current_path}}/public/ --web-url=https://bff.ep-reisen.net') ; +host('hetzner') + ->setHostname('dedi10193.your-server.de') + ->setRemoteUser('epbffsf') + ->setForwardAgent(true) + ->setSshMultiplexing(true) + ->setDeployPath('/usr/home/epbffsf/public_html/bff') + ->set('bin/php', '/usr/bin/php') + ->set('http_user', 'epbffsf') + ->set('rsync_src', __DIR__) + ->set('rsync', $rsyncOptions) + ->set('cachetool_args', '--web=SymfonyHttpClient --web-path={{current_path}}/public/ --web-url=https://bff.ep-reisen.net') +; + task('deploy', [ 'deploy:info', 'deploy:setup',