Mercurial > eldonilo > avatar
annotate configuration.js.example @ 10:a637cde69f71
Rename configuration.js to .example because it has to be modified by the user.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Mon, 23 May 2011 12:18:38 +0200 |
parents | configuration.js@9360b78c7a5b |
children | 38ddd5888b8d |
rev | line source |
---|---|
0 | 1 /* |
2 * Copyright (C) 2011 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | |
3 * | |
4 * This file is the source code of an XMPP avatar retriever. | |
5 * | |
6 * This program is free software: you can redistribute it and/or modify | |
7 * it under the terms of the GNU Affero General Public License as | |
8 * published by the Free Software Foundation, version 3 of the License. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU Affero General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Affero General Public License | |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 */ | |
18 | |
19 'use strict'; | |
20 | |
21 var config = exports; | |
22 | |
8
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
23 // The JID and password of the component, that have to be configured in |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
24 // the host. |
0 | 25 config.jid = 'avatar.example.org'; |
8
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
26 config.password = 'hellohello'; |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
27 |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
28 // The hostname or IP address and the port of the XMPP server hosting |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
29 // the component. |
4
8acaa0a575c7
Allow configuration of the host.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
30 config.host = 'localhost'; |
8acaa0a575c7
Allow configuration of the host.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
0
diff
changeset
|
31 config.port = 5347; |
7
51cda3a6e1c3
Better handling of proxy connections; add an option to specify the root on the webserver.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
5
diff
changeset
|
32 |
8
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
33 // Root of the webservice, useful if you want to proxy it. |
7
51cda3a6e1c3
Better handling of proxy connections; add an option to specify the root on the webserver.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
5
diff
changeset
|
34 config.webRoot = '^/avatar/'; |
8
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
35 |
9
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
36 // These are the host and the port on which the web service will |
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
37 // listen. If you want IPv4 connection only, instead of both IPv4 and |
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
38 // IPv6, replace '::' by '0.0.0.0'. If you want a port < 1024, you |
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
39 // have to start it as root, use a proxy or redirect it using a |
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
40 // firewall like iptables. |
9360b78c7a5b
Add WebHost configuration, and default it to both IPv6 and IPv4.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
8
diff
changeset
|
41 config.webHost = '::'; |
8
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
42 config.webPort = 8032; |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
43 |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
44 // Directory for the cache of the images. |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
45 config.directory = 'data'; |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
46 |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
47 // When true, assume that the TYPE of the avatar is image/png if not |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
48 // specified. Warning: it doesn’t follow the spec and is only a |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
49 // workaround for buggy clients. |
e0cd5ede76af
Better documentation.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
7
diff
changeset
|
50 config.guessType = false; |