~ubuntu-branches/ubuntu/utopic/jetty/utopic-proposed

« back to all changes in this revision

Viewing changes to extras/ajp/src/main/config/etc/jetty-ajp.xml

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2009-08-09 08:48:10 UTC
  • Revision ID: james.westby@ubuntu.com-20090809084810-k522b97ind2robyd
ImportĀ upstreamĀ versionĀ 6.1.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
 
3
 
 
4
<Configure id="Server" class="org.mortbay.jetty.Server">
 
5
 
 
6
  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
 
7
  <!-- Add a AJP listener on port 8009                           -->
 
8
  <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
 
9
  <Call name="addConnector">
 
10
    <Arg>
 
11
       <New class="org.mortbay.jetty.ajp.Ajp13SocketConnector">
 
12
         <Set name="port">8009</Set>
 
13
       </New>
 
14
    </Arg>
 
15
  </Call>
 
16
 
 
17
</Configure>
 
18