refactor: rename app service to klz-app and establish a new internal Docker network for service communication.
Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 34s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m31s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 20s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 9m37s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Successful in 1m41s
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Failing after 3m6s
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 2s

This commit is contained in:
2026-02-05 21:54:46 +01:00
parent a0ce37708e
commit ab688a3dab
3 changed files with 11 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ vcl 4.1;
import std;
backend default {
.host = "app";
.host = "klz-app";
.port = "3000";
.first_byte_timeout = 60s;
}
@@ -11,7 +11,6 @@ backend default {
acl purge {
"localhost";
"127.0.0.1";
"infra"; # Allow purge from within the infra network
}
sub vcl_recv {