Sha256: a9118b072ecf0dc82477f5fd2bcaf9ad21c0f4db3c26b2b09e0bf94eaf2efee9
Contents?: true
Size: 1.41 KB
Versions: 8
Compression:
Stored size: 1.41 KB
Contents
<?xml version="1.0"?> <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd"> <Configure id="Server" class="org.mortbay.jetty.Server"> <!-- ======================================================== --> <!-- java.security.auth.login.config System property --> <!-- This is usually a runtime parameter to the jvm, but --> <!-- it is placed here for convenience. --> <!-- ======================================================== --> <Call class="java.lang.System" name="setProperty"> <Arg>java.security.auth.login.config</Arg> <Arg><SystemProperty name="jetty.home" default="." />/etc/login.conf</Arg> </Call> <!-- ======================================================== --> <!-- An example JAAS realm setup --> <!-- For more information see the jetty wiki at --> <!-- http://http://docs.codehaus.org/display/JETTY/JAAS --> <!-- ======================================================== --> <Set name="UserRealms"> <Array type="org.mortbay.jetty.security.UserRealm"> <Item> <New class="org.mortbay.jetty.plus.jaas.JAASUserRealm"> <Set name="Name">Test JAAS Realm</Set> <Set name="LoginModuleName">xyz</Set> </New> </Item> </Array> </Set> </Configure>
Version data entries
8 entries across 4 versions & 1 rubygems