카카오 소셜로그인 으로 받아온 url로 소셜로그인 시 로컬에서는 잘 됐는데 배포 시 에 502BadGateway가 뜹니다

아이디 : 1107651
redirect uri : https://cozymate.store/oauth2/kakao/code

개발 환경
백엔드 : java/springboot

로그를 찍어보니 사용자 정보 받아와서 서비스 자체 토큰 발급되는거 까지는 잘됩니다.
문제는 로그인을 한 브라우저로 response가 안가고 502 bad gateway가 뜹니다.
nginx 프록시 설정은 443 → 80 을 해뒀습니다.

CORS는 다음과 같이 열어뒀습니다.
CorsConfiguration configuration = new CorsConfiguration();
configuration.setAllowedOrigins(
Arrays.asList(“https://cozymate.store:3000”,
https://cozymate.store:80”,
https://cozymate.store”,
http://localhost:3000”,
http://localhost:8080
));
configuration.setAllowedMethods(Collections.singletonList(““));
configuration.setAllowCredentials(true);
configuration.setAllowedHeaders(Collections.singletonList(”
”));
configuration.setMaxAge(3600L);

로그를 보니 인가요청과 액세스 토큰 발급에 Redirect URI를 다르게 설정해서 발생한 에러가 확인되네요.

인가코드: https://cozymate.store/oauth2/kakao/code
접근토큰: http://localhost:8080/oauth2/kakao/code