redbird icon indicating copy to clipboard operation
redbird copied to clipboard

A modern reverse proxy for node

Results 108 redbird issues
Sort by recently updated
recently updated
newest added

Hi, Thanks for the great work on redbird, we've been using it in production for about 2 weeks, and we're quite happy with it :beers:, especially the HTTPs support is...

Hi, Little explaination : I have a local server, redbird & node installed. I want to proxy & reverse proxy another server, also in lan. This works mostly just fine,...

```javascript var proxy = require('redbird')({ port: 80, xfwd: false, letsencrypt: { path: "certs", port: 3000 }, ssl: { port: 443 } }); proxy.register("aharsoft.com", "http://localhost:3002", { ssl: { key: "/certs/aharsoft.com/private.key", cert:...

My console keeps registering this error with some requests: ``` {"level":50, "time":1701183084869, "pid":3920, "hostname":"SERVER", "name":"redbird", "code":"ERR_MULTIPLE_CALLBACK", "msg":"HTTPS Client Error", "stack":"Error [ERR_MULTIPLE_CALLBACK]: Callback called multiple times at new NodeError (node:internal/errors:405:5) at...

I've just tried to setup LetsEncrypt with Redbird but all I get in the browser is ERR_SSL_VERSION_OR_CIPHER_MISMATCH Any Ideas?

It appears the master branch as currently checked in, results in a build failure. As of this writing master HEAD is https://github.com/OptimalBits/redbird/commit/cb7781e9c471bcb497ea4af1ddabf4fdf4432caa I've not yet rolled back systematically to find...

I have multiple apps running on my server and i have installed redbird to run multiple domains on the same server, each one addressing a specific app. However when I...

I have upgrade greenlock (and this plugins) to v4 to get redbird working on Node 14. This has other advantages, greenlock renews the certificates by itself, so the renewal logic...

Getting the following errors: ``` {"level":50,"time":1595942893309,"pid":16805,"hostname":"ip-xxx-xx-xxx-xx","name":"redbird","code":"ERR_INVALID_ARG_TYPE","msg":"Error registering LetsEncrypt certificates","stack":"TypeError [ERR_INVALID_ARG_TYPE]: The \"data\" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received undefined\n at writeFile...

I think there is a bug in how the path is removed from the URL. In the code below we can see it trying to take the length of the...