Skip to content
Snippets Groups Projects
Commit 2e75fb8d authored by Martin Weise's avatar Martin Weise
Browse files

updated gateway routes

parent 27c423de
Branches
Tags
No related merge requests found
...@@ -16,6 +16,11 @@ public class GatewayConfig { ...@@ -16,6 +16,11 @@ public class GatewayConfig {
.method("POST","GET","PUT","DELETE") .method("POST","GET","PUT","DELETE")
.and() .and()
.uri("lb://fda-container-service")) .uri("lb://fda-container-service"))
.route("fda-container-service", r -> r.path("/api/image/**")
.and()
.method("POST","GET","PUT","DELETE")
.and()
.uri("lb://fda-container-service"))
.route("fda-database-service", r -> r.path("/api/database/**") .route("fda-database-service", r -> r.path("/api/database/**")
.and() .and()
.method("POST","GET","PUT","DELETE") .method("POST","GET","PUT","DELETE")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment