mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
254 B
18 lines
254 B
3 years ago
|
# 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 {
|
||
|
}
|