-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdomain.js
More file actions
42 lines (35 loc) · 900 Bytes
/
domain.js
File metadata and controls
42 lines (35 loc) · 900 Bytes
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
// Default settings to be used by IDP Server, Vertx Msg Server and Vertx Msg Stub
// Should be colocated with Vertx server.java
idp_options =
{
protocol : "https",
domain : "pchainho.wonder.pt",
port : "443",
path: "/idp/index.php?jsonp=returnIdentity&filter_rtcIdentity="
}
// IDP options for websockets, if nothing is given on application layer
// points to idp mongo
/*
var idp_options = {
protocol: "ws",
domain: "150.140.184.246",
port: "28017",
path: "",
wsQuery: wsQuery
}
*/
// Default IDP options, if nothing is given on application layer
// points to idp mongo
/*var idp_options =
{
protocol : "http",
domain : "150.140.184.246",
port : '28017',
path: "/webrtc/users/?jsonp=returnIdentity&filter_rtcIdentity="
};
*/
// Address of Vertx WONDER Message Server
vertx_settings =
{
address: "https://"+idp_options.domain + ":4443/eventbus"
}