How to use different tlsv with same port for different url

Hi ,
I am using the Haproxy 1.8.8 version.

It is working fine till now with tls 1.3. Now another one url needs to work with tlsv1.2.
Now I cannot able to create 2 frontend with the same port. and I needs tlsv1.3 for existing urls.
How can i solve this issue.
https://url1.com >>> TLSv1.3
https://url2.com >>>TLSv1.2

Please help

You can try the crt-list feature:

http://cbonte.github.io/haproxy-dconv/2.2/configuration.html#5.1-crt-list

Here I am using the same domain
https://url1.example.com >> needs TLSV1.3
https://url2.example.com >> needs TLSv1.2

Using single .pem file

In front end using
bind *:443 ssl crt /file location no-sslv3 no-tlsv10 no-tlv11 no-tlsv12

Please help

You mean you are using the same certificate? In this case, it is not possible.

Okay .
Thank you.

Regards
Manoj