Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-ajp/src/main/config/etc/jetty-ajp.xml')
-rw-r--r--jetty-ajp/src/main/config/etc/jetty-ajp.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/jetty-ajp/src/main/config/etc/jetty-ajp.xml b/jetty-ajp/src/main/config/etc/jetty-ajp.xml
new file mode 100644
index 0000000000..191401c7de
--- /dev/null
+++ b/jetty-ajp/src/main/config/etc/jetty-ajp.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0"?>
+<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.eclipse.org/configure.dtd">
+
+<Configure id="Server" class="org.eclipse.jetty.server.Server">
+
+ <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
+ <!-- Add a AJP listener on port 8009 -->
+ <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
+ <Call name="addConnector">
+ <Arg>
+ <New class="org.eclipse.jetty.ajp.Ajp13SocketConnector">
+ <Set name="port">8009</Set>
+ </New>
+ </Arg>
+ </Call>
+
+</Configure>
+

Back to the top