The tomcat tag has no wiki summary.
6
votes
1answer
7k views
How can I redirect port 80 to a different port with Apache?
I have tomcat running on port 8080 and want a particular URL, lets say http://example.com/app, to actually point to example.com:8080/app
I have other content on the website that should remain ...
3
votes
2answers
97 views
Site-wide redirect with Tomcat4
Disclaimer: My webmastering experience is almost nil. Apologies if anything seems ignorant - if it sounds that way, it probably is.
My employer is in the middle of switching over from one version of ...
1
vote
2answers
440 views
Redirect to subdomain port 8080
I have my domain registered and running. I have installed lifray which is running on tomcat 7, my site url is iloveliferay.com:8080 and I want this to be at themes.iloveliferay.com, which file I need ...
1
vote
2answers
88 views
SSL Certification on both www and no-www domains
We've got our website running and HTTPS / SSL works just great.
EXCEPT: when users enter http://www.mydomain.com and then enter the secure area and get directed to https://www.mydomain.com it works ...
1
vote
1answer
1k views
Why the difference between Tomcat and Tomcat7 regarding servlet mapping and defaults?
With the following configuration:
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
...
1
vote
1answer
1k views
mod_rewrite with Apache -> mod_jk -> tomcat
Related to some of my earlier questions.
I now have a setup I quite like;
Apache httpd listening on port 80 accepting http and https connections.
Several Tomcat instances running on several AJP ...
1
vote
2answers
605 views
Need some help on tomcat URL mod_rewrite or mod_jk
I am trying to remove the context name from the URL of my server.
Current URL - http://www.domainname.com/MyApp/
What I need to make is to make it available at - www.domainname.com/
So it is only ...
0
votes
1answer
208 views
Where is my Tomcat running on my virtual server?
According to what I know; Apache and Tomcat are listing on different ports by default. If I have both of them running locally then:
localhost -> Apache home page (port 80)
localhost:8080" -> Tomcat ...
0
votes
0answers
26 views
mod_jk status page “Client Errors”
I have been examining the information displayed in the mod_jk status page for a server instance and there is a column for each worker titled "CE" which the key states is a count of "Client Errors". I ...
0
votes
1answer
45 views
how do I avoid spam domains to point to my site or IP hosting tomcat application
I can across a issue where I saw some xyz.com is pointing to mydomain.com.
I am not using Apache, nor IIS but Tomcat 7 directly.
How to I avoid such other spam domains to point to mydomain.com?
I ...
0
votes
0answers
198 views
tomcat serving static content with directory listings
I have tomcat 7 configured to serve static contents from a directory:
<Host appBase="webapps" name="localhost">
...
<Context docBase="/var/projectA/static" path="/projectA/" />
...