Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 735 Bytes

TOMCAT.md

File metadata and controls

14 lines (12 loc) · 735 Bytes

Apache Tomcat 6

Typical Tomcat installations listen on port 8080.
This sample Apache Virtual Host configuration 00_registration_vhost.conf will direct HTTP requests to the Tomcat instance listening on port 8080.
In addition, the code has been modified to use HTTP instead of HTTPS:

tt/classes/com/oddlabs/tt/render/Renderer.java

//return new HttpRequestParameters("https://" + Settings.getSettings().registration_address + "/oddlabs/registration", parameters);
return new HttpRequestParameters("http://" + Settings.getSettings().registration_address + "/oddlabs/registration", parameters);

The Registration servlet depends on DNS and MySQL