2
votes

I want to remove port number from URL. I have installed apache server and tomcat both on ubuntu. And created SSL certificate on a domain name. So it's fully secure connection.

Below is my URL. https://DomainName:8443/AppName. The application is running fine with above URL.

I am expecting URL - https://DomainName/AppName

1

1 Answers

2
votes

You just need to change the port in your Tomcat server.xml, from 8443 to 443. Unless you're using Apache as a reverse-proxy, in this case you have to configure it with an SSL virtual host.