forked from rwincewicz/php_listeners
-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.xml
66 lines (57 loc) · 2.26 KB
/
config.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<!--
Document : config.xml
Created on : June 11, 2012, 7:38 PM
Author : rwincewicz
Description:
Configuration file for php-based listeners.
-->
<config>
<listeners>
<!-- Choose the number of child processes you want to spawn.
i A rough estimate is you'll get a load average which is
1.5 times the number of child processes (eg. load average
of 12 for 8 child processes -->
<child_processes>2</child_processes>
</listeners>
<fedora>
<!-- These are the details for your Fedora server. You should
make sure that the firewall rules allow the listeners to
contact the Fedora server and set up any XACML policies
to allow write access from the listener IP address -->
<protocol>http</protocol>
<host>ip/ordomin</host>
<port>8080</port>
<username>fedoraAdmin</username>
<password>password</password>
</fedora>
<taverna>
<protocol>https</protocol>
<context>taverna-server</context>
<host>ip/ordomin</host>
<port>8443</port>
<username>username</username>
<password>password</password>
<!--if you use a self signed cert you probably want to leave verify ssl to false-->
<verify_ssl>false</verify_ssl>
<!-- if you want to limit access to the soap_server this should be true-->
<needAuth>true</needAuth>
</taverna>
<stomp>
<!-- These are the details for the JMS broker. Usually the host
will be the same as the Fedora server. If the Stomp port on
the JMS broker has been set up as in the installation
instructions then you'll connect on port 61613 and use the
/queue/listener.update channel -->
<host>localhost</host>
<port>61613</port>
<channel>/queue/listener.update</channel>
</stomp>
<fits_path>/opt/fits/fits.sh</fits_path>
<log>
<!-- Specify the file name of the log file.
the webserver AND the user used to invoke the listeners both need
to have write access to this file -->
<file>/var/log/listener.log</file>
</log>
</config>