Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Jetty/Feature/Secure Mode"

< Jetty‎ | Feature
(New page: {{Jetty}} == Overview == Jetty has support for running in a 'secure' mode in a couple of different ways. === Typical Jetty Startup === > java -jar start.jar OPTIONS=secure,default Thi...)
(No difference)

Revision as of 16:42, 7 July 2009



Overview

Jetty has support for running in a 'secure' mode in a couple of different ways.

Typical Jetty Startup

> java -jar start.jar OPTIONS=secure,default

This will start up jetty using the custom org.eclipse.jetty.policy.JettyPolicy implementation for loading and processing policy files, and install a security manager very before the jetty server starts to bootstrap itself up through the XMLConfiguration mechanism. This mechanism allows for the specification of multiple policy files if you so choose which can be registered in the start.config file.

Typical JVM Startup

> java -Djava.security.manager -Djava.security.policy=lib/secure/jetty.policy -jar start.jar

This is the standard jdk mechanism for starting up the JVM with the policy and security manager in place.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.