Fix stuff and add analytics

This commit is contained in:
Chris Sewell
2014-11-03 02:10:31 -05:00
parent 7aa77793e9
commit 7ecf7a505a
2 changed files with 13 additions and 3 deletions

View File

@ -118,12 +118,12 @@ function startExpress() {
*/
app.all('/api/*', function(req, res) {
var url = 'http://new.atlb.co/' + req.url;
var url = 'http://atlanticbiomedical.com/' + req.url;
req.pipe(request(url)).pipe(res);
});
app.all('/images/*', function(req, res) {
var url = 'http://new.atlb.co/' + req.url;
var url = 'http://atlanticbiomedical.com/' + req.url;
req.pipe(request(url)).pipe(res);
});