Fix example referenced in https://github.com/twitter/secureheaders/pull/86/files
This commit is contained in:
Neil Matatall 2014-03-11 17:51:14 -07:00
Родитель af281b6c04
Коммит 893b9caddf
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -85,9 +85,11 @@ Or simply add it to application controller
```ruby
ensure_security_headers(
:hsts => {:include_subdomains, :x_frame_options => false},
:hsts => {:include_subdomains => true, :max_age => 20.years.to_i}
:x_frame_options => false,
:x_frame_options => 'DENY',
:csp => false)
:csp => false
)
```
## Options for ensure\_security\_headers