Hi I'm having trouble configuring my service deployment
I have an api service that I want to consume X-Userinfo from kong
I've followed this instructions and successfully configured kong and my service in case when request to http://localhost:8000 is made
Now I want to make nginx conf so that service is available at registred hostname
so when I hit
my.service.com/api/v1/someendpoint
I got redirected to okta and after succesfull authentication I got redirected to
my.service.com/api/v1/someendpoint/?code=xxxxxxxxx and that request fails
this is the response i get
'request to the redirect_uri_path but there's no session state found'
do you have any idea what is wrong?
EDIT:
finally I have resolved problem with setting session_secret for the plugin and in the nginx-kong.conf
set $session_secret secret;
in docker-compose.yml for kong
Hi I'm having trouble configuring my service deployment I have an api service that I want to consume X-Userinfo from kong I've followed this instructions and successfully configured kong and my service in case when request to http://localhost:8000 is made Now I want to make nginx conf so that service is available at registred hostname
so I have nginx conf
so when I hit my.service.com/api/v1/someendpoint I got redirected to okta and after succesfull authentication I got redirected to my.service.com/api/v1/someendpoint/?code=xxxxxxxxx and that request fails
this is the response i get 'request to the redirect_uri_path but there's no session state found'
do you have any idea what is wrong?
EDIT: finally I have resolved problem with setting session_secret for the plugin and in the nginx-kong.conf
set $session_secret secret;
in docker-compose.yml for kong