Update deploy/varnish/default.vcl.template

This commit is contained in:
gru
2026-02-25 15:14:42 +01:00
parent 1705320ada
commit 98a52f3c25

View File

@@ -6,7 +6,7 @@ import std;
# ===== Backend =====
backend app {
.host = "app";
.port = "8000";
.port = "${APP_PORT}";
}
# ===== ACL =====
@@ -261,4 +261,4 @@ sub vcl_synth {
# ===== PURGE HANDLER =====
sub vcl_purge {
return (synth(200, "Purged"));
}
}