Redirect to https also on staging

This commit is contained in:
Piotr Sarnacki 2015-01-07 17:55:56 +01:00
parent 7e3e056e1c
commit 37b1155383
2 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,7 @@ ENV['RAILS_ENV'] = ENV['RACK_ENV']
$: << 'lib'
require 'travis/web'
require 'rack-ssl'
class RedirectSubdomain < Struct.new(:app, :from)
def call(env)

View File

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