18 lines
254 B
Plaintext
18 lines
254 B
Plaintext
|
|
# https://www.varnish-cache.org/docs/
|
||
|
|
vcl 4.0;
|
||
|
|
|
||
|
|
# Default backend definition. Set this to point to your content server.
|
||
|
|
backend default {
|
||
|
|
.host = "127.0.0.1";
|
||
|
|
.port = "8080";
|
||
|
|
}
|
||
|
|
|
||
|
|
sub vcl_recv {
|
||
|
|
}
|
||
|
|
|
||
|
|
sub vcl_backend_response {
|
||
|
|
}
|
||
|
|
|
||
|
|
sub vcl_deliver {
|
||
|
|
}
|