# HG changeset patch # User Kim Alvefur # Date 1355046939 -3600 # Node ID efa9c1676d1f56e8a6da5355398a1cd0ebf00080 # Parent 675945ea2ed608effaa66f2c6e4e1bc25fd49195 mod_strict_https: Correct underscore to hypen in max-age directive diff -r 675945ea2ed6 -r efa9c1676d1f mod_strict_https/mod_strict_https.lua --- a/mod_strict_https/mod_strict_https.lua Wed Dec 05 18:07:46 2012 +0100 +++ b/mod_strict_https/mod_strict_https.lua Sun Dec 09 10:55:39 2012 +0100 @@ -5,7 +5,7 @@ local http_server = require "net.http.server"; -local hsts_header = module:get_option_string("hsts_header", "max_age=31556952"); -- This means "Don't even try to access without HTTPS for a year" +local hsts_header = module:get_option_string("hsts_header", "max-age=31556952"); -- This means "Don't even try to access without HTTPS for a year" local _old_send_response; local _old_fire_event;