dannycarrera

Results 10 comments of dannycarrera

> > > Do you guys gave any plans to merge this? I would like to use it, but without having to build my own image. @radoslav-stefanov you can use...

@jheinitz yes, it works with multiple entries separated by a comma.

> I think this PR should be updated according to #1338. Thanks for the suggestion @sgabe. I added the changes, though I'm not sure how to test it. Any guidance...

@MarkErik unfortunately I'm not an expert with nginx. The only suggestions I have are: 1. Use a 2 container setup. Replace docker-gen and LetsEncrypt with [letsencrypt-nginx-proxy-companion](https://hub.docker.com/r/jrcs/letsencrypt-nginx-proxy-companion/). It's essentially docker-gen and...

@shiz0 apologies for not getting to it sooner. Your changes are merged. I put it in my queue of things to do, and all of a sudden it's a few...

@aeneasr This occurs with both redirect and iframe login methods. With my limited understanding, I don't believe the issue is with setting cookies, but how the cookies are stored and...

My apologies. Upon deeper investigation the warning is being thrown when an img file is being requested and ory's cookies are forwarded by the browser. Should I close this issue?...

``` typescript // index.tsx const oidcConfig: AuthProviderProps = { authority, client_id:clientId, redirect_uri, silent_redirect_uri, post_logout_redirect_uri, loadUserInfo: true, monitorSession: true, response_type: 'code', scope, onSigninCallback: () => { window.history.replaceState({}, document.title, '/'); } }...

Just wanted to clarify that I have not clicked `signoutRedirect()`. All this happens after a `signinRedirect()`. > Until "user signed out" the log looks ok The `ResponseValidator` line with the...

I set `Log.setLevel(Log.DEBUG)` but the output is the same. I think the issue is with IdentityServer4. When testing against Keycloak it seems to be working OK. ![image](https://github.com/authts/react-oidc-context/assets/16018201/5a8abf02-025b-430f-af78-cdbeb83fb13a) The POST error...