mirror of
https://github.com/d0zingcat/cors-anywhere.git
synced 2026-05-14 07:26:49 +00:00
12 lines
449 B
JavaScript
12 lines
449 B
JavaScript
// Heroku defines the environment variable PORT, and requires the binding address to be 0.0.0.0
|
|
var host = process.env.PORT ? '0.0.0.0' : '127.0.0.1';
|
|
var port = process.env.PORT || 8080;
|
|
|
|
var cors_proxy = require("./lib/cors-anywhere");
|
|
cors_proxy.createServer({
|
|
requireHeader: 'x-requested-with',
|
|
removeHeaders: ['cookie', 'cookie2']
|
|
}).listen(port, host, function() {
|
|
console.log('Running CORS Anywhere on ' + host + ':' + port);
|
|
});
|