mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 15:13:24 +01:00
81 lines
3.2 KiB
XML
81 lines
3.2 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
|
|
|
|
<!-- ==================================================================
|
|
Configure and deploy the wisemapping web application in $(jetty.home)/webapps/wisemapping
|
|
|
|
Note. If this file did not exist or used a context path other that /wisemapping
|
|
then the default configuration of jetty.xml would discover the wisemapping
|
|
webapplication with a WebAppDeployer. By specifying a context in this
|
|
directory, additional configuration may be specified and hot deployments
|
|
detected.
|
|
===================================================================== -->
|
|
|
|
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
|
|
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
<!-- Required minimal context configuration : -->
|
|
<!-- + contextPath -->
|
|
<!-- + war OR resourceBase -->
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
<Set name="contextPath">/wisemapping</Set>
|
|
<Set name="resourceBase"><SystemProperty name="jetty.home" default="."/>/webapps/wisemapping
|
|
</Set>
|
|
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
<!-- Optional context configuration -->
|
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
|
<!-- <Set name="extractWAR">true</Set>
|
|
<Set name="copyWebDir">false</Set>
|
|
<Set name="defaultsDescriptor"><SystemProperty name="jetty.home" default="."/>/etc/webdefault.xml</Set>
|
|
<Set name="overrideDescriptor"><SystemProperty name="jetty.home" default="."/>/contexts/wisemapping.d/override-web.xml</Set> -->
|
|
|
|
<!-- virtual hosts
|
|
<Set name="virtualHosts">
|
|
<Array type="String">
|
|
<Item>www.myVirtualDomain.com</Item>
|
|
<Item>localhost</Item>
|
|
<Item>127.0.0.1</Item>
|
|
</Array>
|
|
</Set>
|
|
-->
|
|
|
|
<!-- disable cookies
|
|
<Get name="sessionHandler">
|
|
<Get name="sessionManager">
|
|
<Set name="usingCookies" type="boolean">false</Set>
|
|
</Get>
|
|
</Get>
|
|
-->
|
|
|
|
<Get name="securityHandler">
|
|
<Set name="loginService">
|
|
<New class="org.eclipse.jetty.security.HashLoginService">
|
|
<Set name="name">Test Realm</Set>
|
|
<Set name="config"><SystemProperty name="jetty.home" default="."/>/etc/realm.properties
|
|
</Set>
|
|
<!-- To enable reload of realm when properties change, uncomment the following lines -->
|
|
<!-- changing refreshInterval (in seconds) as desired -->
|
|
<!--
|
|
<Set name="refreshInterval">5</Set>
|
|
<Call name="start"></Call>
|
|
-->
|
|
</New>
|
|
</Set>
|
|
<Set name="checkWelcomeFiles">true</Set>
|
|
</Get>
|
|
|
|
<!-- Non standard error page mapping -->
|
|
<!--
|
|
<Get name="errorHandler">
|
|
<Call name="addErrorPage">
|
|
<Arg type="int">500</Arg>
|
|
<Arg type="int">599</Arg>
|
|
<Arg type="String">/dump/errorCodeRangeMapping</Arg>
|
|
</Call>
|
|
</Get>
|
|
-->
|
|
|
|
</Configure>
|