-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.xml
72 lines (57 loc) · 1.27 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
67
68
69
70
71
72
<!--
Jappix Me - Your public profile, anywhere
Configuration file
License: AGPL
Author: Valérian Saliou
IMPORTANT: check that this file cannot be accessed from Web!
-->
<jappix xmlns="jappix:me:config">
<!--
Bot configuration
Create a XID for Jappix Me bot purpose only!
-->
<bot>
<!-- bot username -->
<username>me</username>
<!-- bot host domain -->
<domain>server.tld</domain>
<!-- bot password -->
<password>BOT_PASSWORD</password>
</bot>
<!--
XMPP
Client XMPP access
-->
<xmpp>
<!-- anonymous host domain -->
<domain>anonymous.server.tld</domain>
<!-- bosh relative path (proxy) -->
<bosh>/bosh</bosh>
<!-- websocket relative path (proxy) -->
<websocket>/websocket</websocket>
</xmpp>
<!--
App configuration
Website behavior
-->
<app>
<!-- production/development -->
<mode>development</mode>
<!-- jappix me web url -->
<url>http://me.server.tld</url>
<!-- jappix static host (install jappix or use static.jappix.com) -->
<static>static.server.tld</static>
</app>
<!--
Analytics
Uses Piwik tracking system
-->
<analytics>
<!-- true/false -->
<enable>false</enable>
<!-- only domain name, no url -->
<server>piwik.server.tld</server>
<!-- tracking id -->
<id>42</id>
</analytics>
</jappix>