membphis opened a new issue #1647:
URL: https://github.com/apache/incubator-apisix/issues/1647
Allow users to access the Admin API via HTTPS.
We can add a single flag to support this feature.
```
apisix:
allow_admin: #
http://nginx.org/en/docs/http/ngx_http_access_module.html#allow
- 127.0.0.0/24 # If we don't set any IP list, then any IP
access is allowed by default.
- "::/64"
port_admin: 9180 # use a separate port for Admin API
https_admin: true # enable HTTPS when use a separate port for
Admin API.
# Admin API will use
conf/apisix_admin_api.crt and conf/apisix_admin_api.key as certificate.
```
----------------------------------------------------------------
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]