Updated Branches: refs/heads/master c5b44d978 -> 27a89379c
Move jetty.xml to other jetty-xyz.xml in src/test/jetty Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/27a89379 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/27a89379 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/27a89379 Branch: refs/heads/master Commit: 27a89379c93eea9e3c7cef9266c85624f1deb6dd Parents: c5b44d9 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Mon Nov 11 13:37:06 2013 +0200 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Mon Nov 11 13:37:06 2013 +0200 ---------------------------------------------------------------------- .../resources/archetype-resources/jetty.xml | 23 -------------------- .../src/test/jetty/jetty.xml | 23 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/27a89379/archetypes/quickstart/src/main/resources/archetype-resources/jetty.xml ---------------------------------------------------------------------- diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/jetty.xml b/archetypes/quickstart/src/main/resources/archetype-resources/jetty.xml deleted file mode 100644 index 1a6293b..0000000 --- a/archetypes/quickstart/src/main/resources/archetype-resources/jetty.xml +++ /dev/null @@ -1,23 +0,0 @@ -<?xml version="1.0"?> -<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd"> -<!-- ============================================================= --> -<!-- Configure a HTTP connector.                                 --> -<!-- ============================================================= --> -<Configure> - <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> - <Set name="outputBufferSize">32768</Set> - <Set name="requestHeaderSize">8192</Set> - <Set name="responseHeaderSize">8192</Set> - <Set name="sendServerVersion">true</Set> - <Set name="sendDateHeader">false</Set> - <Set name="headerCacheSize">512</Set> - - <!-- Uncomment to enable handling of X-Forwarded- style headers <Call name="addCustomizer"> --> - <!-- <Arg><New class="org.eclipse.jetty.server.ForwardedRequestCustomizer"/></Arg> --> - <!-- </Call> --> - </New> -</Configure> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/wicket/blob/27a89379/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty.xml ---------------------------------------------------------------------- diff --git a/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty.xml b/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty.xml new file mode 100644 index 0000000..1a6293b --- /dev/null +++ b/archetypes/quickstart/src/main/resources/archetype-resources/src/test/jetty/jetty.xml @@ -0,0 +1,23 @@ +<?xml version="1.0"?> +<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_0.dtd"> +<!-- ============================================================= --> +<!-- Configure a HTTP connector.                                 --> +<!-- ============================================================= --> +<Configure> + <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> + <Set name="outputBufferSize">32768</Set> + <Set name="requestHeaderSize">8192</Set> + <Set name="responseHeaderSize">8192</Set> + <Set name="sendServerVersion">true</Set> + <Set name="sendDateHeader">false</Set> + <Set name="headerCacheSize">512</Set> + + <!-- Uncomment to enable handling of X-Forwarded- style headers <Call name="addCustomizer"> --> + <!-- <Arg><New class="org.eclipse.jetty.server.ForwardedRequestCustomizer"/></Arg> --> + <!-- </Call> --> + </New> +</Configure> \ No newline at end of file
