cited/Tomcat-Webmin-Module

Map domains to Tomcat applications

Closed this issue · 2 comments

Hi! Thanks for your module. It's very helpful.
But I have on question. How ca I map some domain with tomcat application?

Thanks for your help.

It isn't something peculiar to the module. You could use Apache as reverse proxy or ajp, etc..
`--
ServerName yourdomain.com

ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Order allow,deny
Allow from all
</Proxy>

ProxyPass / http://localhost:8080/
ProxyPassReverse / http://localhost:8080/`

OK. Thank you.