Skip to main content

Version: 3.9.0

Configure Routes

Apache APISIX provides flexible gateway management capabilities based on routes, where routing paths and targets are defined for requests.

This tutorial guides you on how to create a route and validate it. You will complete the following steps:

  1. Create a route with a sample upstream that points to httpbin.org.
  2. Use cURL to send a test request to see how APISIX proxies and forwards the request.

What Is a Route

A route is a routing path to upstream targets. In Apache APISIX, routes are responsible for matching client's requests based on defined rules, loading and executing the corresponding plugins, as well as forwarding requests to the specified upstream services.

In APISIX, a simple route can be set up with a path-matching URI and a corresponding upstream address.

What Is an Upstream

An upstream is a set of target nodes with the same work. It defines a virtual host abstraction that performs load balancing on a given set of service nodes according to the configured rules.

Prerequisite(s)

  1. Complete Get APISIX to install APISIX.

Create a Route

In this section, you will create a route that forwards client requests to httpbin.org, a public HTTP request and response service.

The following command creates a route, which should forward all requests sent to http://127.0.0.1:9080/ip to httpbin.org/ip:

curl -i "http://127.0.0.1:9180/apisix/admin/routes" -X PUT -d '
{
"id": "getting-started-ip",
"uri": "/ip",
"upstream": {
"type": "roundrobin",
"nodes": {
"httpbin.org:80": 1
}
}
}'

You will receive an HTTP/1.1 201 Created response if the route was created successfully.

Validate

curl "http://127.0.0.1:9080/ip"

The expected response is similar to the following:

{
"origin": "183.94.122.205"
}

What's Next

This tutorial creates a route with only one target node. In the next tutorial, you will learn how to configure load balancing with multiple target nodes.


API7.ai Logo

API Management for Modern Architectures with Edge, API Gateway, Kubernetes, and Service Mesh.

Product

API7 Cloud

SOC2 Type IRed Herring

Copyright © APISEVEN Ltd. 2019 – 2024. Apache, Apache APISIX, APISIX, and associated open source project names are trademarks of the

Apache Software Foundation