fix(admin): Webhook-URL auf Docker-internen Hostnamen umstellen

App-Container kann Host-IP nicht erreichen; deployer-Hostname funktioniert
da beide im selben Docker-Netzwerk (nexxo) laufen.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
boban 2026-04-21 02:56:17 +02:00
parent 22a7328a62
commit 3cb0c729b2
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class Versions extends Component
public function triggerDeploy(): void
{
$secret = env('DEPLOY_WEBHOOK_SECRET', '');
$url = 'http://10.10.90.103:9000/deploy';
$url = env('DEPLOY_WEBHOOK_URL', 'http://deployer:9000/deploy');
try {
$response = Http::withHeaders(['X-Webhook-Secret' => $secret])