• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Calling Tomcat webapp from apache site,,,

S

sapo68

Guest
Hi,

I Have a fresh installation of Plesk 8.2 under CentOs5, I have to move a Tomcat webapp in this server.

The application run actually under apache (because port 8080 is filtered) and I have a site.conf file customized to accomplished this.

Can I modify in Plesk a site conf file to follow this rule?

Thanks in advance.

This is my site.conf file:

<IfModule mod_jk.c>

JkWorkersFile /etc/tomcat5/base/workers.properties
JkLogFile /var/log/tomcat5/base/mod_jk.log

# Log level to be used by mod_jk
JkLogLevel error

# The following line makes apache aware of the location of
# the /servlets-examples context
Alias /servlets-examples "/srv/www/tomcat5/base/webapps/servlets-examples"
<Directory "/srv/www/tomcat5/base/webapps/servlets-examples">
Options Indexes FollowSymLinks
allow from all
</Directory>

# The following line makes apache aware of the location of
# the /jsp-examples context
Alias /jsp-examples "/srv/www/tomcat5/base/webapps/jsp-examples"
<Directory "/srv/www/tomcat5/base/webapps/jsp-examples">
Options Indexes FollowSymLinks
allow from all
</Directory>

# The following line makes apache aware of the location of
# the /khyber context
Alias /khyber "/srv/www/tomcat5/base/webapps/khyber
<Directory "/srv/www/tomcat5/base/webapps/khyber">
Options Indexes FollowSymLinks
allow from all
</Directory>

# The following line mounts all JSP files and the /servlet/ uri to tomcat
JkMount /servlets-examples/servlet/* ajp13
JkMount /jsp-examples/*.jsp ajp13
JkMount /khyber/*.jsp ajp13

# The following line prohibits users from directly accessing WEB-INF
<Location "/jsp-examples/WEB-INF/">
AllowOverride None
deny from all
</Location>
<Location "/servlets-examples/WEB-INF/">
AllowOverride None
deny from all
</Location>
<Location "/khyber/WEB-INF/">
AllowOverride None
deny from all
</Location>


</IfModule>
 
Yes. You should be able to do so.
Of course if you use my company's addon
software it automates all that for you :)
 
Back
Top