| # |
| # Example of providing a demo configuration, using a ${jetty.base} |
| # |
| |
| # We want to serve content over http |
| --module=http |
| |
| # Have webapps be deployed normally from webapps directory |
| --module=deploy |
| |
| # We are using annotations + jndi |
| --module=annotations |
| --module=jndi |
| |
| # Enable security via jaas, and configure it |
| --module=jaas |
| jaas.login.conf=demo/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=demo/realm.properties |
| |
| |