Sha256: 568149a136decf8b8341d2c755a421f6cca746f5ff4e8f99ba3a6b1d6837bc13
Contents?: true
Size: 723 Bytes
Versions: 6
Compression:
Stored size: 723 Bytes
Contents
# frozen_string_literal: true module ActionDispatch # = Action Dispatch \AssumeSSL # # When proxying through a load balancer that terminates SSL, the forwarded request will appear # as though its HTTP instead of HTTPS to the application. This makes redirects and cookie # security target HTTP instead of HTTPS. This middleware makes the server assume that the # proxy already terminated SSL, and that the request really is HTTPS. class AssumeSSL def initialize(app) @app = app end def call(env) env["HTTPS"] = "on" env["HTTP_X_FORWARDED_PORT"] = "443" env["HTTP_X_FORWARDED_PROTO"] = "https" env["rack.url_scheme"] = "https" @app.call(env) end end end
Version data entries
6 entries across 6 versions & 1 rubygems