Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3e9e68aa5e9dab66320b7512fd860b52e01f9bb2 (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
29
30
31
32
33
34
35
36
37
38
39
40
#
# Example of providing a demo configuration, using a ${jetty.base}
# 

# We want to serve content over http
--module=http
jetty.port=8080

# Have webapps be deployed normally from webapps directory
--module=deploy

# Some of the examples use JSP
--module=jsp

# We are using annotations + jndi
--module=annotations
--module=jndi

# Enable security via jaas, and configure it
--module=jaas
jaas.login.conf=etc/login.conf

# Enable rewrite examples
--module=rewrite
etc/demo-rewrite-rules.xml

# The async behavior examples use http client to access remote systems
--module=client

# Websocket chat examples needs websocket enabled
--module=websocket

# Create and configure the test realm
etc/test-realm.xml
demo.realm=etc/realm.properties

# Load test JNDI resources from lib/ext
--module=ext


Back to the top