Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 832565c5ad22677d9cb88334864a29f65494a059 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd">

<!-- =============================================================== -->
<!-- The IP Access Handler                                           -->
<!-- =============================================================== -->

<Configure id="Server" class="org.eclipse.jetty.server.Server">
  <Call name="insertHandler">
    <Arg>
      <New id="IPAccessHandler" class="org.eclipse.jetty.server.handler.IPAccessHandler">
	<Set name="white">
	  <Array type="String">
	    <Item>127.0.0.1</Item>
	    <Item>127.0.0.2/*.html</Item>
	  </Array>
	</Set>
	<Set name="black">
	  <Array type="String">
	    <Item>127.0.0.1/blacklisted</Item>
	    <Item>127.0.0.2/black.html</Item>
	  </Array>
	</Set>
	<Set name="whiteListByPath">false</Set>
      </New>
    </Arg>
  </Call>
</Configure>

Back to the top