mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
15 lines
248 B
Ruby
15 lines
248 B
Ruby
# tiny middleware to force https if needed
|
|
class Discourse::ForceHttpsMiddleware
|
|
|
|
def initialize(app, config={})
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
env['rack.url_scheme'] = 'https' if SiteSetting.force_https
|
|
@app.call(env)
|
|
end
|
|
|
|
end
|
|
|