Taylor White
Taylor White
Add a setting to `EnableRegexRuleMatching: true` in your settings file, and then learn to regex through [regex101](https://regex101.com/).
I had to read through the code to figure it out 🥴
Will respond tonight--I'm returning from a flight (on my phone currently).
Here's my setup (below). Notes: `EnableRegexRuleMatching` controls how the current request path is evaluated against the `GeneralRules` ([here's the code](https://github.com/stefanprodan/AspNetCoreRateLimit/blob/e8f3221d8cd1bb21a3173655d3dd25a764e8db97/src/AspNetCoreRateLimit/Core/RateLimitProcessor.cs#L83)). The regex/non-regex evaluation happens in [IsUrlMatch](https://github.com/stefanprodan/AspNetCoreRateLimit/blob/582fa9b02452c37b4f321b10c25a06cd33774638/src/AspNetCoreRateLimit/Core/Extensions.cs#L8). You'd want to turn...
I hit this as well, for what its worth.
> Hey @hexdump2002, watch this video: https://www.youtube.com/watch?v=-1cTReZ9lzY This is an hour long video, can you be more specific to @hexdump2002's question? I just watched about half of it and have...
> Hey, thanks for the PR! > > Changing app ID like this is a bit problematic. It'll break any existing installations of the app, unless we put time into...
@javiercn I have an application that began exhibiting this problem upon upgrading to .NET 8. I didn’t do too much research as I figured you all would hash this bug...
I'm not sure I follow this issue. If we are sitting on .NET 6 Preview 5 packages right now and running WASM with Individual Accounts template, would that explain why...
Nah, that was not the issue. All defaulted Microsoft packages provided by the templates were on `6.0.0-preview.5.21301.17`. When I downgraded the following (leaving the rest on `6.0.0-preview.5.21301.17`): - `Microsoft.AspNetCore.ApiAuthorization.IdentityServer` -...