10 lines
322 B
Ruby
10 lines
322 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
if AppConfig.environment.require_ssl?
|
|
Rails.application.config.middleware.insert_before 0, Rack::SSL
|
|
puts "Rack::SSL is enabled"
|
|
end
|