How to setup gitlab auth #2032
-
After a successful installation of the server using docker with the last version from master branch (commit c2c4305), I'm unable to setup gitlab auth. In my
and I configure then I run But when I click on the Gitlab logo I'm redirected to a page with the following error
I'm wondering what I'm doing wrong. Is my redirect URI address the right one ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@fspindle, thanks for the report. I can replicate what you're experiencing locally. It seems like the fix is to specify the redirect URI in the configuration too. When I added an
Please give that a try and let me know if you can log in. I'll do some digging on my end to determine why Socialite needs the |
Beta Was this translation helpful? Give feedback.
@fspindle, thanks for the report. I can replicate what you're experiencing locally.
It seems like the fix is to specify the redirect URI in the configuration too. When I added an
.env
entry forGITLAB_REDIRECT_URI
which matched the value that I set when registering the user-owned application, I didn't receive the error any more. Your block of.env
would look like this:Please give that a try and let me know if you can log in. I'll do some digging on my end to determine why Socialite needs the
redirect_uri
in thea…