Hi everyone, I'm using a self-hosted instance of O...
# ory-selfhosting
b
Hi everyone, I'm using a self-hosted instance of Ory Kratos (
<http://localhost:9080/kratos/self-service/>
). When I try to resend a verification code, everything works as expected. However, if the verification flow has timed out, the
updateVerificationFlow
function redirects to:
Copy code
<https://localhost:4433/self-service/verification/flows?id=24ae8c74-c29e-480a-93f2-4444ed3be292>
I'm not sure why it's redirecting to
localhost:4433
instead of my expected URL. How can I override this behavior in the configuration? My client SDK configuration
Copy code
const ory = new FrontendApi(
	new Configuration({
		basePath: "<http://localhost:9080/kratos>",
		baseOptions: {
			withCredentials: true,
		},
	})
);
Thanks in advance!