JBoss 5.1.0 is configured for Ajp on port 8009 as follows in /jboss/server//deploy/jbossweb.sar directory:
<Connector protocol="AJP/1.3" port="8009" address="${jboss.bind.address}"
emptySessionPath="true" enableLookups="false" redirectPort="8443" maxThreads="200" connectionTimeout="60000" />
After starting jboss and deploying w...
Hi,
In JBoss 5.1.0, there is a file called <INSTANCE>/conf/bindingservice.beans/META-INF/bindings-jboss-beans.xml which includes some settings for applying an offset to the port numbers. This is used to enable multiple instances to run on the same box without going through painful reconfiguration of the ports for each instance. There is...
I have my Apache HTTP server set up to forward all requests to Tomcat, i.e. proxy_ajp.conf looks like:
ProxyPass / ajp://localhost:8009/
where Tomcat is listening on port 8009. This works find except when I try to access squirrelmail (i.e. webmail) on the server. Is there a way to forward all requests to Tomcat except those going to...
with the Mod_jk connector we have this in our /etc/apache2/sites-available file:
RewriteRule \/$ /op_ugw/orderportal/home?switchprofile=RecyledPlants [L]
This works fine. and www.recycledplants.com will get you to the correct place.
However on Ubuntu 10.04 server we setup ajp instead of mod_jk . so we have
ProxyPass / ajp://10.1.1....
hi all i have a redirection problem with mod ajp, that it always adds the application name before the desired page, for example:
if i requested the page:
http://myapp.com/mypage
it is converted to
http://myapp.com/myapp/mypage, and i get a 404 error
i don't know why such behaviour occurs, this is the configuration:
<Proxy *> AddDef...
hi all
i have my app configured with mod ajp to be as follows:
http://www.myapp.com/myapp
so when i request a page like mypage, the url will be
http://www.myapp.com/myapp/mypage
and i want when the user requests the page
the url is displayed as:
http://www.myapp.com/mypage
instead of
http://www.myapp.com/myapp/mypage
any ideas ...
greetings all
i want to save cookies with subDomains
and i want to know how to do so
this is my current configuration:
ProxyPass / ajp://127.0.0.1:8009/appName/
ProxyPassReverse / ajp://127.0.0.1:8009/appName/
ProxyPassReverseCookieDomain .appName.com *.appName.com
ProxyPassReverseCookiePath / /appName
...