Yes, it is possible, but a very difficult decision. What you need to do is define a method on the controller that will retrieve the remote content and display it.
require 'net/http' class TunblrController<ApplicationController def index uri = URI('http://tumlbr.com/myblog') html = Net::HTTP.get(uri) render :html=>html end end
that, as they say, you are much better off doing this with Nginx, HAProxy, or other similar solutions.
source share