Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now you should be able to view the examples site without specifying port 8080, http://www.krypton.com/examples/

Excluding Mod_jk

In the situation where jkmount is using a wildcard as a context root for example ofbiz an exclude can be added to stop jkmount from affecting the directory.

First edit the virtual host file in /etc/apache2/sites-available/ with your favorite editor and add the following line after the jkmount

Code Block
languagebash
SetEnvIf Request_URI "/directory/*" no-jk

Make sure to restart your apache for this change to take affect.

Now all files and folders under "directory" will not be affected by mod_jk

Resources

http://www.gustavomejia.com/blog/2008/03/02/1204455261015.html - seems to have decent instructions using ubuntu apt-get to set up mod_jk. Don't understand the java_home thing though.

...