Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
#65: Make backend port configurable in kodekit.vcl
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Rombauts committed Dec 13, 2017
1 parent 7e1bd7c commit 8516e7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions component/varnish/resources/varnish/kodekit.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ probe health
backend default
{
.host = "127.0.0.1"; # IP or Hostname of backend
.port = "8080"; # Port Apache or whatever is listening
.port = "%1$s"; # Port Apache or whatever is listening
.max_connections = 300; # That's it
.probe = health;
.connect_timeout = 600s; # How long to wait before we receive a first byte from our backend?
Expand All @@ -35,7 +35,7 @@ backend default
backend passthrough
{
.host = "127.0.0.1"; # IP or Hostname of backend
.port = "8080"; # Port Apache or whatever is listening
.port = "%1$s"; # Port Apache or whatever is listening
}

acl localhost
Expand Down

0 comments on commit 8516e7d

Please sign in to comment.