runekm

Results 7 comments of runekm

My setup is quite simple. It looks like this: ``` var proxy = require('redbird')({ port: 80, xfwd: true, bunyan: false, letsencrypt: { path: __dirname + "/certs", port: 9999 }, ssl:...

I recently tried upgrading to 0.9.1 again, and the problem reappeared. My ajax requests then starts failing once in a while because just parts of the json that is sent...

> Yes I do have the same issues. I had to disable http2 and gzip compression... Unfortunately, redbird does not seems to be upgraded anymore. Maybe should we fork it...

I used these guides to setup nginx, certbot and http2: https://www.digitalocean.com/community/tutorials/how-to-install-nginx-on-ubuntu-18-04 https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-18-04 https://www.digitalocean.com/community/tutorials/how-to-set-up-nginx-with-http-2-support-on-ubuntu-18-04

Yes, the browser is displaying http://mydomain.com///mypage//// in the address bar while req.originalUrl in my node app says /mypage/ If I navigate directly to http://localhost:3000///mypage//// instead (not through Redbird), req.originalUrl says...

After a little bit of digging around, it seams that this behaviour is caused by .replace(/\/+/g, '/') on line 191 of /node_modules/http-proxy/lib/http-proxy/common.js

Yes. But it was also a problem with path.join in /lib/proxy.js. path.join results in back slashes in Windows, and it also replaces multiple succeeding slashes. When I commented out line...