Coder Social home page Coder Social logo

Custom error response about caddy-ext HOT 5 CLOSED

russellluo avatar russellluo commented on August 15, 2024
Custom error response

from caddy-ext.

Comments (5)

ermiaqasemi avatar ermiaqasemi commented on August 15, 2024

FYI, I tried handle_errors but does not work

from caddy-ext.

RussellLuo avatar RussellLuo commented on August 15, 2024

FYI, I tried handle_errors but does not work

While responding with a 429, rate_limit actually returns a nil error:

w.WriteHeader(rl.RejectStatusCode)
return nil

As explained in this issue: caddyserver/caddy#2920 (comment), handle_errors is for errors that happen in Caddy.

I think the ideal solution is to check whether the response status code is 429 first (unfortunately not supported by Caddy now); and If it's so, then we trigger an error explicitly by using the error directive:

@429 status 429
error @429 429

There is a similar response matcher status, which is only available in the context of reverse_proxy.

from caddy-ext.

ermiaqasemi avatar ermiaqasemi commented on August 15, 2024

Thanks for explanation @RussellLuo

from caddy-ext.

RussellLuo avatar RussellLuo commented on August 15, 2024

Hi @ermiaqasemi, rate_limit now will return an error if a rate limit is exceeded. Here is an example configuration:

:8080 {
  handle_errors {
    @429 expression `{http.error.status_code} == 429`
    respond @429 "The request is rejected!"
  }

  route /foo {
    rate_limit {remote.host} 1r/m

    respond 200
  }
}

from caddy-ext.

ermiaqasemi avatar ermiaqasemi commented on August 15, 2024

Thanks @RussellLuo I will check

from caddy-ext.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.