Firstsawyou edited a comment on issue #3890:
URL: https://github.com/apache/apisix/issues/3890#issuecomment-804687985
In `allow_admin` you need to configure the IP list that allows you to access
the `Admin API`. Currently, only `192.168.0.0/24` is allowed to access in your
configuration. Example, configure `0.0.0.0/0` to allow all ip access:
```yaml
apisix:
allow_admin: #
http://nginx.org/en/docs/http/ngx_http_access_module.html#allow
- 192.168.0.0/24 # If we don't set any IP list, then any IP
access is allowed by default.
- 0.0.0.0/0
# - "::/64"
```
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]