SSL setup for route
#10621
Replies: 2 comments
-
2023/12/08 19:57:15 [error] 52#52: 5940 [lua] init.lua:195: http_ssl_client_hello_phase(): failed to find SNI: please check if the client requests via IP or uses an outdated protocol. If you need to report an issue, provide a packet capture file of the TLS handshake., context: ssl_client_hello_by_lua, client: 192.168.1.101, server: 0.0.0.0:9443 I got more information, I guess I need to create a certicate for the URL 192.168.1.140 |
Beta Was this translation helpful? Give feedback.
0 replies
-
I had manage to fix the issue adding to the configuration a default SNI
|
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.
-
Hi
I'm trying to setup SSL for a domain but having some issues to setup, and I do know exactly where is the problem, maybe someone can give me a clue
Let me start with CONF file from apisix
`
apisix:
node_listen: 9080 # APISIX listening port
enable_ipv6: false
enable_control: true
control:
ip: "0.0.0.0"
port: 9092
ssl:
enable: true
listen:
- port: 9443
ssl_protocols: TLSv1.2 TLSv1.3
`
When I try to use curl from the host to see if there is connection I got this answer
`
curl https://192.168.1.140:9443/ -v -k -I
curl: (35) error:0A000438:SSL routines::tlsv1 alert internal error
`
I'm using version 3.7.0 and using Docker version
I might be missing something.
Thank you for your time reading.
Beta Was this translation helpful? Give feedback.
All reactions