Eu configurei gateway e consegui registrar no Eureka, e mesmo assim eu recebo 404 ao tentar fazer requisição ao serviço "pedidos-ms"
application.properties
spring.datasource.driver-class-name=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/postgres?currentSchema=alurafood-pedidos
spring.datasource.username=postgres
spring.datasource.password=postgres
spring.jpa.show-sql=true
spring.application.name=pedidos-ms
eureka.client.serviceUrl.defaultZone=http://localhost:8761/eureka
eureka.client.register-with-eureka=true
eureka.client.fetch-registry=true
server.port=0