forked from taverna/taverna-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.sample.xml
19 lines (17 loc) · 1.01 KB
/
context.sample.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<!-- Sample context.xml showing how to tweak logging and some parameters. -->
<!-- See the Install Guide for more information about this file. -->
<Context path="/taverna-server">
<!-- Sample logging configuration. -->
<Valve className="org.apache.catalina.valves.AccessLogValve" />
<!-- Controls whether URs are logged. -->
<Parameter name="usage.logFile" value="%{WEBAPPROOT}/usage.log"
description="Full path to name of file that usage records for executed workflow runs will be dumped to. To make it relative to the webapp root, prefix with '%{WEBAPPROOT}/'." />
<Parameter name="usage.disableDB" value="no"
description="Set to yes to disable writing of URs to the database." />
<!-- For email-dispatched notifications. -->
<Parameter name="email.host" value="localhost"
description="Where the SMTP server for sending notification emails is located."/>
<Parameter name="email.from" value="taverna.server@localhost"
description="Who to send notification emails as."/>
</Context>