This gem removes HSTS header from Rails response. If your nginx is responsible for HSTS and you want to remove headers that were added by Rails this solution is for you.
Installation
To make it available just add following lines into your Gemfile
:
gem "remove_hsts"
And then execute:
bundle install
That's all. HSTS header specified by Rails will be removed.
Test
There are no useful specs at this moment. But maybe they will be added in the future. Anyway you can run all available specs using following commands:
git clone https://github.com/ToMesto/remove_hsts
bundle install
bundle exec rake spec
Feel free to send pull requests that adds any appropriate tests.
Contributing
- Fork it ( https://github.com/ToMesto/remove_hsts/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request