I need to test a web application on localhost with a custom domain name es: my.domain.com using the HTTPS protocol (I'm using self signed certs).
I've setup a vhost in my httpd.conf
and added an entry to my /etc/hosts
file
127.0.0.1 my.domain.com
But Google Chrome block with an ERR_SSL_PROTOCOL_ERROR "this site can't provide a secure connection".
I tried to disable the security checks into the Chrome settings but nothing changed still got the ERR_SSL_PROTOCOL_ERROR problem.
Is it possibile to bypass this thing for develop purpose only?
Important: I can't change my domain name because of settings in order to make a Single Sign On works
Thanks