Recently I have learned to run tomcat server. I used to believe that only deployed server could be SSL (TLS) certified and use https
. But with Tomcat server I learned we can enable SSL and handle https connections. I need to know how Tomcat server can do this ? How it is implemented ? How will I achieve this from scratch ?
"<Connector SSLEnabled="true" acceptCount="100" clientAuth="false" disableUploadTimeout="true" enableLookups="false" maxThreads="25" port="80" keystoreFile="/Users/daniel-pt7732/Downloads/apache-tomcat-9.0.94/conf/.CricBuzzKeyStore" keystorePass="daniel" protocol="org.apache.coyote.http11.Http11NioProtocol" scheme="https" secure="true" sslProtocol="TLS"/>"