Skip to content

Instantly share code, notes, and snippets.

@jkrall
Forked from dhh/gist:29752
Created December 15, 2009 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkrall/257241 to your computer and use it in GitHub Desktop.
Save jkrall/257241 to your computer and use it in GitHub Desktop.
config.action_controller.asset_host = Proc.new do |source, request|
non_ssl_host = "http://asset#{source.hash % 4}.backpackit.com"
ssl_host = "https://asset1.backpackit.com"
if request.ssl?
case
when source =~ /\.js$/
ssl_host
when request.headers["USER_AGENT"] =~ /(Safari)/
non_ssl_host
when request.headers["USER_AGENT"] =~ /Firefox/ && source =~ /^\/images/
non_ssl_host
else
ssl_host
end
else
non_ssl_host
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment