boden
boden

Reputation: 1681

How to configure HTTPS for Tomcat on AWS

I have an instance on AWS with Tomcat that works on 80 port. My security groups has following configuration: enter image description here

I did do configuration for Tomcat and keytool. On local machine it works and I can do https://localhost:8443, but how can I open HTTPS for port 8443 on AWS?

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
       maxThreads="150" scheme="https" secure="true"
       clientAuth="false" sslProtocol="TLS"
       keystoreFile="/home/user/keytools/ssl"
       keystorePass="123456"/>

Upvotes: 2

Views: 775

Answers (1)

Manivannan Thirugnanam
Manivannan Thirugnanam

Reputation: 781

you just change Connector port=443 it will work.

Upvotes: 2

Related Questions