Fixes #668 - Introduce optional `jetty.deploy.defaultsDescriptorPath` for jetty-deploy defaults descriptor outside of ${jetty.home}
This commit is contained in:
parent
1ac1673396
commit
bba1c19875
|
@ -47,7 +47,14 @@
|
|||
</Default>
|
||||
</Property>
|
||||
</Set>
|
||||
<Set name="defaultsDescriptor"><Property name="jetty.home" default="." />/etc/webdefault.xml</Set>
|
||||
<Set name="defaultsDescriptor">
|
||||
<Property>
|
||||
<Name>jetty.deploy.defaultsDescriptorPath</Name>
|
||||
<Default>
|
||||
<Property name="jetty.home" default="." />/etc/webdefault.xml
|
||||
</Default>
|
||||
</Property>
|
||||
</Set>
|
||||
<Set name="scanInterval"><Property name="jetty.deploy.scanInterval" default="1"/></Set>
|
||||
<Set name="extractWars"><Property name="jetty.deploy.extractWars" default="true"/></Set>
|
||||
<Set name="configurationManager">
|
||||
|
|
|
@ -21,6 +21,9 @@ etc/jetty-deploy.xml
|
|||
# Monitored directory path (fully qualified)
|
||||
# jetty.deploy.monitoredPath=/var/www/webapps
|
||||
|
||||
# Defaults Descriptor for all deployed webapps
|
||||
# jetty.deploy.defaultsDescriptorPath=${jetty.base}/etc/webdefault.xml
|
||||
|
||||
# Monitored directory scan period (seconds)
|
||||
# jetty.deploy.scanInterval=1
|
||||
|
||||
|
|
Loading…
Reference in New Issue