diff options
author | olivier lamy <olamy@apache.org> | 2017-05-13 22:33:49 +1000 |
---|---|---|
committer | olivier lamy <olamy@apache.org> | 2017-05-13 22:33:49 +1000 |
commit | 6f286273991823611cca8733e64626a6ee90ae5f (patch) | |
tree | bb401ac72efbbd8a8108fd4ce9573bfddeb81a15 /archiva-jetty/src/main/conf/jetty.xml | |
parent | 25796870f2475ec4857d05b1c54540a6221a323e (diff) | |
download | archiva-6f286273991823611cca8733e64626a6ee90ae5f.tar.gz archiva-6f286273991823611cca8733e64626a6ee90ae5f.zip |
update jetty.xml file with 9.4 version
Signed-off-by: olivier lamy <olamy@apache.org>
Diffstat (limited to 'archiva-jetty/src/main/conf/jetty.xml')
-rw-r--r-- | archiva-jetty/src/main/conf/jetty.xml | 58 |
1 files changed, 7 insertions, 51 deletions
diff --git a/archiva-jetty/src/main/conf/jetty.xml b/archiva-jetty/src/main/conf/jetty.xml index 63e47195d..b7e66d463 100644 --- a/archiva-jetty/src/main/conf/jetty.xml +++ b/archiva-jetty/src/main/conf/jetty.xml @@ -1,5 +1,5 @@ <?xml version="1.0"?> -<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd"> +<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd"> <!-- ~ Licensed to the Apache Software Foundation (ASF) under one ~ or more contributor license agreements. See the NOTICE file @@ -51,9 +51,6 @@ <!-- =========================================================== --> <!-- =========================================================== --> - <!-- Use this connector for many frequently idle connections - and for threadless continuations. - --> <New id="httpConfig" class="org.eclipse.jetty.server.HttpConfiguration"> <Set name="secureScheme">https</Set> <Set name="securePort"><Property name="jetty.secure.port" default="8443" /></Set> @@ -61,7 +58,6 @@ <Set name="requestHeaderSize">8192</Set> <Set name="responseHeaderSize">8192</Set> <Set name="headerCacheSize">512</Set> - </New> <Call name="addConnector"> @@ -84,15 +80,17 @@ </Arg> </Call> - <!-- =========================================================== --> - <!-- Set handler Collection Structure --> - <!-- =========================================================== --> <Set name="handler"> <New id="Handlers" class="org.eclipse.jetty.server.handler.HandlerCollection"> <Set name="handlers"> <Array type="org.eclipse.jetty.server.Handler"> <Item> - <New id="Contexts" class="org.eclipse.jetty.server.handler.ContextHandlerCollection"/> + <New class="org.eclipse.jetty.webapp.WebAppContext"> + <Set name="contextPath">/</Set> + <Set name="war"><SystemProperty name="appserver.base" default="./apps/archiva"/>/apps/archiva</Set> + <Set name="extractWAR">false</Set> + <Set name="copyWebDir">false</Set> + </New> </Item> <Item> <New id="DefaultHandler" class="org.eclipse.jetty.server.handler.DefaultHandler"/> @@ -116,34 +114,6 @@ </Arg> </Call> - <Call name="addBean"> - <Arg> - <New id="DeploymentManager" class="org.eclipse.jetty.deploy.DeploymentManager"> - <Set name="contexts"> - <Ref refid="Contexts" /> - </Set> - <Call id="webappprovider" name="addAppProvider"> - <Arg> - <New class="org.eclipse.jetty.deploy.providers.WebAppProvider"> - <Set name="monitoredDirName"><Property name="jetty.base" default="." />/apps</Set> - <Set name="configurationClasses"> - <Array type="java.lang.String"> - <Item>org.eclipse.jetty.webapp.WebInfConfiguration</Item> - <Item>org.eclipse.jetty.webapp.WebXmlConfiguration</Item> - <Item>org.eclipse.jetty.webapp.MetaInfConfiguration</Item> - <Item>org.eclipse.jetty.webapp.FragmentConfiguration</Item> - <Item>org.eclipse.jetty.plus.webapp.EnvConfiguration</Item> - <Item>org.eclipse.jetty.plus.webapp.PlusConfiguration</Item> - <!--Item>org.eclipse.jetty.annotations.AnnotationConfiguration</Item--> - <Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item> - </Array> - </Set> - </New> - </Arg> - </Call> - </New> - </Arg> - </Call> <!-- =========================================================== --> <!-- extra options --> @@ -162,24 +132,11 @@ <Item>org.eclipse.jetty.plus.webapp.EnvConfiguration</Item> <Item>org.eclipse.jetty.plus.webapp.PlusConfiguration</Item> <Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item> - <Item>org.eclipse.jetty.webapp.TagLibConfiguration</Item> </Array> </Arg> </Call> - <!-- =========================================================== --> - <!-- Configurations for WebAppContexts --> - <!-- Sequence of configurations to be applied to a webapp. --> - <!-- =========================================================== --> - <Array id="plusConfig" type="java.lang.String"> - <Item>org.eclipse.jetty.webapp.WebInfConfiguration</Item> - <Item>org.eclipse.jetty.plus.webapp.EnvConfiguration</Item> - <Item>org.eclipse.jetty.webapp.Configuration</Item> - <Item>org.eclipse.jetty.webapp.JettyWebXmlConfiguration</Item> - <Item>org.mortbay.jetty.webapp.TagLibConfiguration</Item> - </Array> - <!-- ARCHIVA CONFIG --> <New id="validation_mail" class="org.eclipse.jetty.plus.jndi.Resource"> @@ -227,5 +184,4 @@ </New> - </Configure> |