server: port: 5000 # 게이트웨이가 실행될 포트spring: cloud: gateway: routes: - id: example_route uri: http://localhost:8081 # 실제 백엔드 서비스의 URL predicates: - Path=/service/** filters: - StripPrefix=1 - name: AuthHeaderFilter # 커스텀 필터 사용 - id: login_reigster_route uri: http://localhost:8080 # 로그인 요청을 처리할 백엔드 서비스의 ..