README 796 B

12345678910111213141516171819202122
  1. The Strict Transport Security plugin implements the Strict Transport Security header, improving the security of HTTPS only sites.
  2. See http://lists.w3.org/Archives/Public/www-archive/2009Sep/att-0051/draft-hodges-strict-transport-sec-05.plain.html for the specification.
  3. Installation
  4. ============
  5. add "addPlugin('strictTransportSecurity');"
  6. to the bottom of your config.php
  7. The plugin will not do anything unless:
  8. $config['site']['ssl'] is set to something other than 'never'
  9. $config['site']['path'] is either not set, empty, or '/'
  10. Settings
  11. ========
  12. max_age (15552000): sets how long to remember the forced HTTPS (seconds) (15552000 seconds is 180 days)
  13. includeSubDomains (false): if set, then STS will apply to all the sub-domains too.
  14. Example
  15. =======
  16. addPlugin('strictTransportSecurity');