Skip to content
Snippets Groups Projects
Verified Commit bbac11b5 authored by Kirill Stytsenko's avatar Kirill Stytsenko
Browse files

Add `fda-units-service` to GatewayConfig

parent c89a87ee
No related branches found
No related tags found
2 merge requests!81New stable release,!43Merge dev to master
...@@ -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-analyse-service")) .uri("lb://fda-analyse-service"))
.route("fda-units-service", r -> r.path("/api/units/**")
.and()
.method("POST", "GET", "PUT", "DELETE")
.and()
.uri("lb://fda-units-service"))
.route("fda-container-service", r -> r.path("/api/container/**", .route("fda-container-service", r -> r.path("/api/container/**",
"/api/image/**") "/api/image/**")
.and() .and()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment