Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 291 Bytes

IDEAS.md

File metadata and controls

17 lines (13 loc) · 291 Bytes

Ideas for later

  • Generate VCL per host from simple flat config file, i.e.
error_html: /path/to/file.html

Would produce:

sub vcl_error {
  set obj.http.Content-Type = "text/html; charset=utf-8";
  synthetic std.fileread("/path/to/file.html");
  return (deliver);
}