laizuan commented on issue #9397:
URL: https://github.com/apache/apisix/issues/9397#issuecomment-1635227442
@An-DJ
Hi. thank you very much for providing documentation help, I followed the
documentation in a clean environment. It worked
I checked the configuration file and found the problem, FYI:
- I modified the port of 'apisix' in the `docker-compose` file
```yaml
##This is wrong
ports:
- "80:80/tcp"
- "443:443/tcp"
## Right way. === Don't delete port bindings that you don't think are
useful ===
ports:
- "9180:9180/tcp"
- "80:9080/tcp"
- "9091:9091/tcp"
- "443:9443/tcp"
- "9092:9092/tcp"
```
Additionally, I tested and found that 'X-API-KEY' was set to '1234567890' or
exceeded 32 characters in length, and the verification did not pass correctly.
Does it have rules?
--
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]