I've been trying to get XWiki installed as the
ROOT webapp so I can access it with localhost:8080 instead of localhost:8080/xwiki
(referencing
http://platform.xwiki.org/xwiki/bin/view/Main/ShortURLs).
I had XWiki working properly first, following the original instructions (expanding the
WAR to /usr/share/tomcat5.5/webapps/xwiki).
Then I renamed xwiki to ROOT
I created a ROOT.xml file in /usr/share/tomcat5.5//conf/Catalina/localhost as follows:
<Context path="/" docBase="/usr/share/tomcat5.5/webapps/ROOT"
debug="0" privileged="false"
allowLinking="true">
</Context>
and restarted Tomcat.
Now when I go to localhost:8080 I get
"Connection Interrupted
The connection to the server was reset while the page was loading."
and get redirected to
http://127.0.0.1:9080/xwiki/bin/Main/ThisWikiDoesNotExist
Am I missing something?