allow setting hsts for Rack::SSL

This commit is contained in:
Sven Fuchs 2013-09-11 17:12:20 +02:00
parent 0468b1e327
commit 73c98ef9db

View File

@ -33,7 +33,7 @@ class Travis::Web::App
def build(options = {})
builder = Rack::Builder.new
if options[:environment] == 'production'
builder.use Rack::SSL
builder.use Rack::SSL, hsts: Travis.config.ssl.hsts || true
end
builder.use Rack::Deflater
builder.use Rack::Head