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
parent
22a7328a62
commit
3cb0c729b2
|
|
@ -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])
|
||||
|
|
|
|||
Loading…
Reference in New Issue