TelmoNeves
Results
1
issues of
TelmoNeves
I have the following code in my heroku app: ``` var http = require('http'), httpProxy = require('http-proxy'); var proxy = httpProxy.createProxyServer({}); http.createServer(function(req, res) { proxy.web(req, res, {target:req.url, prependPath:false}) }).listen(process.env.PORT ||...