diff options
author | Reed Loden <reed@reedloden.com> | 2013-02-19 19:30:37 +0100 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2013-02-19 19:30:37 +0100 |
commit | 6ae6ab514158a975b0483577c7a3405896c0e704 (patch) | |
tree | 7fab15bd2ad107186bb4d40eefe52a186576c4dc /Bugzilla | |
parent | ce7169dc8be336da570202e818033a7098012e83 (diff) | |
download | bugzilla-6ae6ab514158a975b0483577c7a3405896c0e704.tar.gz bugzilla-6ae6ab514158a975b0483577c7a3405896c0e704.tar.xz |
Bug 842651 - Bump HSTS max-age from one month to one year.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 0658244a1..71cbe4599 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -434,8 +434,8 @@ use constant MAX_LOGIN_ATTEMPTS => 5; use constant LOGIN_LOCKOUT_INTERVAL => 30; # The maximum number of seconds the Strict-Transport-Security header -# will remain valid. BMO uses one month. -use constant MAX_STS_AGE => 2629744; +# will remain valid. BMO uses one year. +use constant MAX_STS_AGE => 31536000; # Protocols which are considered as safe. use constant SAFE_PROTOCOLS => ('afs', 'cid', 'ftp', 'gopher', 'http', 'https', |