Camo is all about making insecure assets look secure. This is an SSL image proxy to prevent mixed content warnings on secure pages served from GitHub.
We want to allow people to keep embedding images in comments/issues/READMEs/google charting.
There's more info on the GitHub blog.
Using a shared key, proxy URLs are encrypted with hmac so we can bust caches/ban/rate limit if needed.
- Proxy remote images with a content-type of images/*
- Proxy images < 5 MB
- Proxy google charts
- 404s for anything other than a 200 or 304 HTTP response
At GitHub we render markdown and replace all of the src
attributes on the img
tags with the appropriate URL to hit the proxies. There's example code for creating URLs in the tests.
% coffee server.coffee
% rake
To see the full URL resclient is hitting etc, try this.
% RESTCLIENT_LOG=stdout rake
You can see an example god config here.
To enable useful line numbers in stacktraces you probably want to compile the server.coffee file to native javascript when deploying.
% coffee -c server.coffee
% /usr/bin/env PORT=9090 CAMO_KEY="<my application key>" node server.js