laizuan commented on issue #9439:
URL: https://github.com/apache/apisix/issues/9439#issuecomment-1562170747

   不会一切正常,也是通过apisix代理转发。只不过我通过控制台上传证书无效。我最后使用配置nginx来实现
   
   ```yml
   apisix:
     node_listen: 
       - 1443
     ssl:
       enable: false
       listen:
         - port: 443
     enable_ipv6: false
     enable_server_tokens: false
     enable_control: true
     control:
       ip: "0.0.0.0"
       port: 9092
   nginx_config:
       http_server_configuration_snippet: |
               listen 443 ssl;
               ssl_certificate /usr/local/apisix/static/ssl.crt;
               ssl_certificate_key  /usr/local/apisix/static/ssl.key;
               ssl_session_timeout 5m;
               ssl_protocols TLSv1.2 TLSv1.3;
               ssl_ciphers 
ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
               ssl_prefer_server_ciphers on;
   ```
   
   
   这个问题我提了issues #9397 


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