wavemoroc001 commented on issue #8296:
URL: https://github.com/apache/apisix/issues/8296#issuecomment-1311150266

   Error log says `failed to find any SSL certificate by SNI` so I just try to 
add certification and hope it will found but still log not found certificate
   
   **this is my route that enable plugin `auth_keycloak`**
   
   ```json
   {
     "uri": "/student",
     "name": "student-route",
     "methods": [
       "GET"
     ],
     "plugins": {
       "authz-keycloak": {
         "bearer_only": true,
         "client_id": "myclient",
         "disable": false,
         "discovery": 
"https://gateway-classroom.wavemoroc.app:8443/auth/realms/Apisix/.well-known/uma2-configuration";
       }
     },
     "upstream": {
       "nodes": [
         {
           "host": "example_web1_1",
           "port": 80,
           "weight": 1
         }
       ],
       "timeout": {
         "connect": 6,
         "send": 6,
         "read": 6
       },
       "type": "roundrobin",
       "checks": {
         "active": {
           "concurrency": 10,
           "healthy": {
             "http_statuses": [
               200,
               302
             ],
             "interval": 1,
             "successes": 2
           },
           "http_path": "/",
           "timeout": 1,
           "type": "http",
           "unhealthy": {
             "http_failures": 5,
             "http_statuses": [
               429,
               404,
               500,
               501,
               502,
               503,
               504,
               505
             ],
             "interval": 1,
             "tcp_failures": 2,
             "timeouts": 3
           }
         }
       },
       "scheme": "http",
       "pass_host": "pass",
       "keepalive_pool": {
         "idle_timeout": 60,
         "requests": 1000,
         "size": 320
       }
     },
     "status": 1
   }
   
   ```


-- 
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]

Reply via email to