diff options
Diffstat (limited to 'varnish/default.vcl')
-rw-r--r-- | varnish/default.vcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/varnish/default.vcl b/varnish/default.vcl index cd726aff363b..a06bb744b725 100644 --- a/varnish/default.vcl +++ b/varnish/default.vcl @@ -47,6 +47,7 @@ sub vcl_synth { # Execute TLS or www. redirect if (resp.status == 750) { set resp.http.Location = "https://www.tazj.in" + req.url; + set resp.http.Strict-Transport-Security = "max-age=31536000;includeSubdomains;preload"; set resp.status = 301; return (deliver); } |