tzssangglass commented on issue #8067:
URL: https://github.com/apache/apisix/issues/8067#issuecomment-1276976555
> Do you have any advice on this problem?
The `apisix-cp.pem` you generated does not have a Common Name.
```yaml
control_plane:
host:
- "https://apisix-control-plane:9280"
```
APISIX would verify the `apisix-control-plane` is the same as the Common
Name of `apisix-cp.pem`.
you can disable this verification by add `tls.verify`
```
control_plane:
host:
- "https://apisix-control-plane:9280"
timeout: 30
prefix: "/apisix"
tls:
verify: false
```
Or you need to regenerate the certificate that issued the Common Name.
--
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]