Hello everyone, I need your help: When I use apisix + opa plug-in for permission verification, the opa service cannot receive authentication requests from apisix #8202
Unanswered
Duanxinxin
asked this question in
Q&A
Replies: 1 comment
-
Can you troubleshoot network problems yourself? Access the OPA service in the container running APISIX to see if the network is OK. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
The environment I use:
When a request comes in, apisix uses the opa plug-in to verify the permission of the interface. After verification, apisix forwards the request to the corresponding business service。
But now my apisix cannot request to my opa service normally
The following is the configuration I made when I turned on the opa plug-in in apisix。
"plugins": { "jwt-auth": { "disable": false }, "opa": { "disable": false, "host": "http://opa.dev:8181", "policy": "ipim/dev/check_result", "ssl_verify": false }, "proxy-rewrite": { "regex_uri": [ "^/api/iam/(.*)", "/workspace/$1" ], "scheme": "http" }
Beta Was this translation helpful? Give feedback.
All reactions