Site icon GetPageSpeed

VCL coding style

Indentation: 4 spaces.

Function opening bracket on the same line with definition:

sub vcl_miss {
    return (fetch);
}

Single lines of VCL can be commented out using // or #. Multi-line blocks can be commented out with /* block /*.

Exit mobile version