ochinchina opened a new issue, #7077:
URL: https://github.com/apache/apisix/issues/7077
### Description
In the TELCOM area, The gateway host will join multiple LANs. Diffrent LAN
will have different IP segment. So the Gateway host will have multiple IPs.
A NGINX Gateway needs to setup multiple http/tcp/udp servers. Each server
will listen on its own IP and port number. Following is an example of a typical
NGINX configuration in TELCOM area:
```NGINX
http {
...
server {
listen 10.0.0.1:8090;
....
}
server {
listen 192.168.0.10:80;
....
location /hello {
proxy_pass http://hello-service;
}
location /foo {
proxy_pass http://foo-service;
}
}
...
}
```
Is it possible for APISIX to expose NGINX server concept to user? and
provide some APIs to operate the NGINX server. All the route, service... APIs
can include an optional server-id in its request body to indicate the request
is on a specific NGINX server.
And also is it possible to provide APIs to set NGINX parameter for the
server and route...?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]