Flowdock
method

redirect_to_https

Importance_0
v4.0.2 - Show latest stable - 0 notes - Class: SSL
redirect_to_https(request) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/middleware/ssl.rb, line 34
      def redirect_to_https(request)
        url        = URI(request.url)
        url.scheme = "https"
        url.host   = @host if @host
        url.port   = @port if @port
        headers    = { 'Content-Type' => 'text/html', 'Location' => url.to_s }

        [301, headers, []]
      end
Register or log in to add new notes.