diff --git a/docs/src/main/asciidoc/sagan-index.adoc b/docs/src/main/asciidoc/sagan-index.adoc index f8dc3a9807..dfd6707d76 100644 --- a/docs/src/main/asciidoc/sagan-index.adoc +++ b/docs/src/main/asciidoc/sagan-index.adoc @@ -73,25 +73,25 @@ public class DemogatewayApplication { // @formatter:off return route("path_route") .GET("/get", http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .build().and(route("host_route") .route(host("*.myhost.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .build().and(route("rewrite_route") .route(host("*.rewrite.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .before(rewritePath("/foo/(?.*)", "/${segment}")) .build().and(route("circuitbreaker_route") .route(host("*.circuitbreaker.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(circuitBreaker("slowcmd")) .build().and(route("circuitbreaker_fallback_route") .route(host("*.circuitbreakerfallback.org"), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(circuitBreaker(c -> c.setId("slowcmd").setFallbackUri("forward:/fallback"))) .build().and(route("limit_route") .route(host("*.limited.org").and(path("/anything/**")), http()) - .before(uri("https://httpbin.orb")) + .before(uri("https://httpbin.org")) .filter(rateLimit(c -> c.setCapacity(10).setPeriod(Duration.ofSeconds(1)).setKeyResolver(request -> request.headers().firstHeader("X-TokenId")))) .build())))));