I followed the tutorial on link site that basically does 2 things :
• Create a .keystore with changeit password through Keytool.exe. I saved the resultate file in C: \ Users \ Vinicius
• Uncomment and modify the server.xml connector located in C: \ Program Files \ Apache Software Foundation \ Tomcat 8.0 \ conf and looks like this:
> <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="200" SSLEnabled="true" scheme="https" secure="true" keystoreFile="C:\Users\Vinicius\.keystore" keystorePass="changeit"
clientAuth="false" sslProtocol="TLS" />
After this, in theory, I only access my page through https://localhost:8443/
but I get that "The connection to localhost was declined."
Did I do something wrong?