We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to do something like this to setup the following.
But I'm getting a 404 on the /proxy/about request when changing lines 47 - 60 in doge.js:
/proxy/about
var proxy = httpProxy.createProxyServer({}) app.use(require('../')([], selects, true)); app.use("/proxy", function (req, res) { proxy.web(req, res, { target: 'https://nodejs.org/en'+req.url, agent: https.globalAgent, headers: { host: 'nodejs.org' } }); });
Should I be thinking about this differently?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to do something like this to setup the following.
But I'm getting a 404 on the
/proxy/about
request when changing lines 47 - 60 in doge.js:Should I be thinking about this differently?
The text was updated successfully, but these errors were encountered: