Skip to content
New issue

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

Match by suffix (instead of prefix) #357

Open
2 tasks done
peterbe opened this issue Jul 10, 2024 · 2 comments
Open
2 tasks done

Match by suffix (instead of prefix) #357

peterbe opened this issue Jul 10, 2024 · 2 comments

Comments

@peterbe
Copy link

peterbe commented Jul 10, 2024

Prerequisites

  • I have written a descriptive issue title
  • I have searched existing issues to ensure the feature has not already been requested

🚀 Feature Proposal

In porting an Express + http-proxy-middleware app, there's something I can't do; match by suffix rather than prefix.
My Express code looks like this:

app.use("*/ping", backendProxy);

That means that any URL like /foo/ping or /bla/ble/blu/ping would be proxied away from this to that backend it was configured to.

This would be nice to be able to do with fastify-http-proxy.
(Perhaps it's possible with some hacks, but I can't figure it out)

Motivation

Another use-case other than the one above is if you wanted to match by file extension. E.g.

server.register(require('@fastify/http-proxy'), {
  upstream: 'http://my-api.example.com',
  pattern: '*.webp'
});

Example

server.register(require('@fastify/http-proxy'), {
  upstream: 'http://my-api.example.com',
  pattern: '*/info'
});

or

server.register(require('@fastify/http-proxy'), {
  upstream: 'http://my-api.example.com',
  suffix: '/info'
});

it would match http://localhost:3000/anything/info or http://localhost:3000/a/b/c/d/info

@jsumners
Copy link
Member

Would you like to send a Pull Request to address this issue? Remember to add unit tests.

@mcollina
Copy link
Member

I don't think this would be feasible.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants