Created
November 27, 2008 13:57
-
-
Save dhh/29752 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
[@](`
`)