Login Redirecting to localhost #169
-
OverviewSeeing a new issue popping up after doing a clean install. Logging in with the "Login with GitHub" button goes through the auth flow, but ends by redirecting to ContextHere is the chain of redirects:
and here is my docker-compose file (truncated for brevity): version: "3"
services:
gateway:
image: codecov/self-hosted-gateway:latest-calver
volumes:
- ./config:/config
ports:
- "${CODECOV_PORT-80}:8080"
environment:
- CODECOV_GATEWAY_MINIO_ENABLED=true
- CODECOV_DEFAULT_HOST=frontend
- CODECOV_DEFAULT_PORT=8080
- CODECOV_DEFAULT_SCHEME=http
- CODECOV_DEFAULT_HOST_HEADER="%[req.hdr(Host)]"
networks:
- codecov
depends_on:
- api
- frontend
frontend:
image: codecov/self-hosted-frontend:latest-calver
environment:
- CODECOV_BASE_HOST=mydomain.com
- CODECOV_API_HOST=mydomain.com
- CODECOV_IA_HOST=mydomain.com
- CODECOV_SCHEME=https
volumes:
- ./config:/config
ports:
- "8080"
networks:
- codecov
api:
image: codecov/self-hosted-api:latest-calver
environment:
- RUN_ENV=ENTERPRISE
volumes:
- ./config:/config
networks:
- ... Any ideas what might be causing this? |
Beta Was this translation helpful? Give feedback.
Answered by
drazisil-codecov
Nov 30, 2023
Replies: 2 comments
-
Hi @chaseconey , Can you see if setting |
Beta Was this translation helpful? Give feedback.
0 replies
-
I swapped this into an issue here, please let's use that. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
drazisil-codecov
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I swapped this into an issue here, please let's use that.
#170