-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Feature Request (Error Pages): Possibility to change status code #2039
Comments
Not sure if this fits the use-case: I want to have IPWhitelisting for some services. In case someone from outside tries to access those services he should receive a 404 Error Code instead of 403. |
Any update on this issue? I really don't want to reveal that a service is available under particular (sub)domain; configuring IpWhitelist to return 404 instead of 403 would be great. |
Greetings @er1z -- issues that are tagged |
Unfortunately I'm not into the Golang but if I experiment with adding such a feature can I expect that you'll review my CR with hints what to improve? |
@michael-k Worked on this one with @Lepkem during the hackathon. Please check if the new plugin would do the work for you https://github.com/Lepkem/traefik-plugin-response-code-override |
This feature request helps handling (near) inputless oauth authentication as this will help the authentication handler to not have Traefik specific quirks. |
@linuxgemini did you check out the plugin I mentioned ? It's already available :) |
@RafPe I'd rather have this functionality within Traefik itself, rather than a plugin. |
@linuxgemini I get that. The plugin arise as way of addressing this feature request in the most recent hackathons. Looking from perspective of solutions I'm pretty sure it would make ur life easier :) even in the time u wait for implementation of this feature |
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
If not specified, this defaults to the old behavior (returning a HTTP 403 Forbidden). Sometimes it's preferable to return a 404 rather than a 403 when rejecting a request. For example, you may not want to leak the fact that a page even exists. I see some other people have asked for this. See: - https://www.reddit.com/r/Traefik/comments/xkcxhb/hide_forbidden_pages_from_public_view/ - traefik#2039: It's not clear to me if the OP was requesting something specific to the `IPAllowList` or not, but there are definitely some people asking for this in the thread.
Hi there! My idea is to add a mapping to the configuration: middlewares:
test-errors:
errors:
status:
- "500"
- "501"
- "503"
- "505-599"
- "418"
service: noop@internal
query: "/{status}.html"
overrideStatusCodes:
'418': 404
'400-402': 401 The The configuration name What do you think? |
Do you want to request a feature or report a bug?
feature
Problem
We are serving millions of tracking scripts every day, we have to make sure that in case of any upstream errors/downtimes the scripts still get served with status code 200 and "valid javascript", so our clients sites are not affected.
With nxing it is possible to intercept upstream errors and rewrite them to another status code:
This results in the request being served with status OK and an empty file containing
//e
so errors can be monitored.The text was updated successfully, but these errors were encountered: