max-lt
max-lt
The `auth_jwt_redirect` directive makes the code overly complicated and can be easily replaced by the nginx's `error_page` directive: from: ``` location ~ ^/secure/ { auth_jwt_enabled on; auth_jwt_validation_type COOKIE=rampartjwt; auth_jwt_redirect on;...
The [auth_request](http://nginx.org/en/docs/http/ngx_http_auth_request_module.html) directive sould not be triggered when the `auth_jwt` one successfully authenticates the request: - `auth_jwt` must be executed before `auth_request` (because it is fastest). - `auth_request` must be...
Hello, I am maintaining a nginx module using libjwt, someone reported that [the exp value is not parsed correctly](https://github.com/max-lt/nginx-jwt-module/discussions/33) when using a fractional (for example `"exp": 1698742245.336421`). Is that intended...
Replace --sd_version 1.5 by --sd-version v1-5 in readme file
Line 226 of core.js : crash sometime for obscur reasons (with chromium 50.0.2661.75 (64-bit)) (not with FireFox 46.0) solved by changing ``` 219 } else if (thatWords.length > 0xffff) {...
Hello, I noticed some warning when running a cloudflare-adapter project with wrangler `npx wrangler pages dev .svelte-kit/cloudflare` ``` ▲ [WARNING] The package "node:async_hooks" wasn't found on the file system but...
Coupons are currently accessed by code, but same code can be emitted for different courses, Image endpoint takes code as argument and will return the first one that matches
As mentioned in #855, [Scroll to Text fragments](https://developer.mozilla.org/en-US/docs/Web/URI/Fragment/Text_fragments) does not works properly because of the delay induced by the loading of content. We must manually trigger a navigation event (`location.hash...
**Describe the bug** A clear and concise description of what the bug is. [Response](https://github.com/boa-dev/boa/blob/main/core/runtime/src/fetch/response.rs#L170) constructor has dummy implementation ```rust #[boa_class(rename = "Response")] #[boa(rename_all = "camelCase")] impl JsResponse { #[boa(constructor)] fn...