Fixes #5281
Added work module to create work directory reviewed by janbartel
This commit is contained in:
parent
4d992a4315
commit
afe5044d8c
|
@ -1,7 +1,7 @@
|
|||
# DO NOT EDIT - See: https://www.eclipse.org/jetty/documentation/current/startup-modules.html
|
||||
|
||||
[description]
|
||||
Adds the $JETTY_HOME/resources and/or $JETTY_BASE/resources directory to the server classpath.
|
||||
Adds the $JETTY_BASE/resources directory to the server classpath.
|
||||
Useful for configuration property files (eg jetty-logging.properties)
|
||||
|
||||
[tags]
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
# DO NOT EDIT - See: https://www.eclipse.org/jetty/documentation/current/startup-modules.html
|
||||
|
||||
[description]
|
||||
Creates the $JETTY_BASE/work directory as a persistent temp directory.
|
||||
If a work directory exists, it is used for context temp directories, but
|
||||
they are persisted between runs of Jetty, so generated files (eg JSPs)
|
||||
can be kept.
|
||||
|
||||
[tags]
|
||||
server
|
||||
|
||||
[files]
|
||||
work/
|
||||
|
|
@ -11,6 +11,7 @@ Configure the Jetty Demo base.
|
|||
rewrite
|
||||
jaas
|
||||
test-keystore
|
||||
work
|
||||
|
||||
[tags]
|
||||
demo
|
||||
|
|
Loading…
Reference in New Issue