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

Support rewriting status codes in error page middleware #11520

Merged
merged 8 commits into from
Mar 3, 2025

Conversation

sevensolutions
Copy link
Contributor

@sevensolutions sevensolutions commented Feb 8, 2025

What does this PR do?

This PR adds support for rewriting status codes when using the Errors Middleware as requested in #2039.

Motivation

I always configure a low-priority fallback router for unmatched requests like this, to show a custom 404 error page:

http:
  middlewares:
    fallback-error:
      errors:
        status: ["418"]
        service: myErrorService
        query: "/{status}.html"

  routers:
    fallback:
      rule: "PathPrefix(`/`)"
      priority: 1
      service: noop@internal
      middlewares: ["fallback-error"]

But because the noop-service always returns 418, i want to rewrite it to 404 again.

This PR allows the following configuration:

http:
  middlewares:
    fallback-error:
      errors:
        status: ["418"]
        service: myErrorService
        query: "/{status}.html"
        statusRewrites:
          "418": 404

  routers:
    fallback:
      rule: "PathPrefix(`/`)"
      priority: 1
      service: noop@internal
      middlewares: ["fallback-error"]

statusRewrites defines a mapping of status codes, so also supports multiple.
Every key can also be a range like:

statusRewrites:
  "418": 404
  "500-504": 500

More

  • Added/updated tests
  • Added/updated documentation

Additional Notes

@sevensolutions
Copy link
Contributor Author

I think i should also add the originalStatus as a parameter to the query option.

@rtribotte
Copy link
Member

Hi @sevensolutions,

Thanks for this contribution!

At glance, reference documentation and Kubernetes CRDs update are missing.
You can generate them by executing go generate and make generate-crd.

@sevensolutions
Copy link
Contributor Author

@rtribotte thx for reviewing this and sorry, didn't know that.
I've pushed the missing files.

@kevinpollet kevinpollet changed the title feat: Add support for rewriting status codes in error page middleware Support rewriting status codes in error page middleware Feb 17, 2025
Copy link
Contributor

@sdelicata sdelicata left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @sevensolutions and thanks for your contribution!
I made a few suggestions concerning option naming and documentation.

@sevensolutions
Copy link
Contributor Author

Thank you for reviewing my PR @sdelicata.
I like the suggested name statusRewrites and updated everything.

Copy link
Member

@mmatur mmatur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Thanks for your contribution

Copy link
Contributor

@youkoulayley youkoulayley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@kevinpollet kevinpollet dismissed sdelicata’s stale review March 3, 2025 09:42

We want to move forward with this pull request

Copy link
Member

@kevinpollet kevinpollet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks 👍

@traefiker traefiker merged commit fa76ed5 into traefik:master Mar 3, 2025
40 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants