We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 658f960 commit 81b9005Copy full SHA for 81b9005
docker-compose.yml
@@ -24,8 +24,6 @@ varnish:
24
25
apache:
26
image: fballiano/magento2-apache-php
27
-# ports:
28
-# - "8080:80"
29
links:
30
- db
31
- redis
varnish.vcl
@@ -4,10 +4,19 @@ import std;
4
import directors;
5
6
#AUTOGENERATED_START
7
-backend default {
+backend apache_1 {
8
.host = "apache";
9
.port = "80";
10
}
11
+
12
+sub vcl_init {
13
+ new cluster1 = directors.round_robin();
14
+ cluster1.add_backend(apache_1);
15
+}
16
17
+sub vcl_recv {
18
+ set req.backend_hint = cluster1.backend();
19
20
#AUTOGENERATED_END
21
22
acl purge {
0 commit comments