Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Releases: fastify/fast-proxy

Update project repository

13 Feb 14:27

Choose a tag to compare

Updated:

  • Project repository links now point to the fastify organisation instead of jkyberneees.
  • Minor semantic documentation updates.

Fixed:

  • Gateway path in npm run bench script was fixed.

Improved proxy headers management

11 Feb 10:10
e10a7a1

Choose a tag to compare

  • Fixes the host header management on proxy as reported in #6.
  • We also now support the x-forwarded-host header.
  • Dependency updates

Supporting optional request timeout configuration

14 Nov 16:37

Choose a tag to compare

Optional timeout option can be passed during proxy:

    gateway.all('/service/*', function (req, res) {
      proxy(req, res, req.url, {
        request: {
          timeout: 3000 // if target exceeds 3 seconds to respond, the gateway will timeout with 504 code
        }
      })
    })

Supporting extended agent configurations

03 Oct 17:31

Choose a tag to compare

Allowing to pass down all http[s].Agent configuration options.

Updating deps

27 Aug 19:47
ac2f65b

Choose a tag to compare

Merge pull request #2 from jkyberneees/updating-semver

updating deps

Fix default body

18 Jun 13:32

Choose a tag to compare

let body = null

Updating git repo

04 Jun 05:04

Choose a tag to compare