feat: Add configurable cookie domain to gatekeeper and enhance Varnish backend configuration with health probes and increased timeouts.
Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 11s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m41s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 28s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 3m56s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Successful in 46s
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Failing after 3m7s
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 3s
Some checks failed
Build & Deploy KLZ Cables / 🔍 Prepare Environment (push) Successful in 11s
Build & Deploy KLZ Cables / 🧪 Quality Assurance (push) Successful in 1m41s
Build & Deploy KLZ Cables / 🏗️ Build Gatekeeper (push) Successful in 28s
Build & Deploy KLZ Cables / 🏗️ Build App (push) Successful in 3m56s
Build & Deploy KLZ Cables / 🚀 Deploy (push) Successful in 46s
Build & Deploy KLZ Cables / ⚡ PageSpeed (push) Failing after 3m7s
Build & Deploy KLZ Cables / 🔔 Notifications (push) Successful in 3s
This commit is contained in:
@@ -2,12 +2,21 @@ vcl 4.1;
|
||||
|
||||
import std;
|
||||
|
||||
probe default_probe {
|
||||
.url = "/en";
|
||||
.timeout = 2s;
|
||||
.interval = 5s;
|
||||
.window = 5;
|
||||
.threshold = 3;
|
||||
}
|
||||
|
||||
backend default {
|
||||
.host = "klz-app";
|
||||
.port = "3000";
|
||||
.connect_timeout = 5s;
|
||||
.first_byte_timeout = 90s;
|
||||
.between_bytes_timeout = 5s;
|
||||
.connect_timeout = 10s;
|
||||
.first_byte_timeout = 300s;
|
||||
.between_bytes_timeout = 10s;
|
||||
.probe = default_probe;
|
||||
}
|
||||
|
||||
acl purge {
|
||||
|
||||
Reference in New Issue
Block a user