Browse Source

Manually formats config.js to bring in a bit of consistency and make uncommenting properties a tad easier and less error prone.

master
Lyubomir Marinov 9 years ago
parent
commit
4a6e8e5e6e
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      config.js

+ 9
- 9
config.js View File

4
     hosts: {
4
     hosts: {
5
         domain: 'jitsi-meet.example.com',
5
         domain: 'jitsi-meet.example.com',
6
         //anonymousdomain: 'guest.example.com',
6
         //anonymousdomain: 'guest.example.com',
7
-        // authdomain: 'jitsi-meet.example.com',  // defaults to <domain>
7
+        //authdomain: 'jitsi-meet.example.com',  // defaults to <domain>
8
         muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
8
         muc: 'conference.jitsi-meet.example.com', // FIXME: use XEP-0030
9
         bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
9
         bridge: 'jitsi-videobridge.jitsi-meet.example.com', // FIXME: use XEP-0030
10
         //jirecon: 'jirecon.jitsi-meet.example.com',
10
         //jirecon: 'jirecon.jitsi-meet.example.com',
11
         //call_control: 'callcontrol.jitsi-meet.example.com',
11
         //call_control: 'callcontrol.jitsi-meet.example.com',
12
-        //focus: 'focus.jitsi-meet.example.com' - defaults to 'focus.jitsi-meet.example.com'
12
+        //focus: 'focus.jitsi-meet.example.com', // defaults to 'focus.jitsi-meet.example.com'
13
     },
13
     },
14
 //  getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
14
 //  getroomnode: function (path) { return 'someprefixpossiblybasedonpath'; },
15
 //  useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
15
 //  useStunTurn: true, // use XEP-0215 to fetch STUN and TURN server
59
     enableWelcomePage: true,
59
     enableWelcomePage: true,
60
     enableSimulcast: false, // blocks FF support
60
     enableSimulcast: false, // blocks FF support
61
     logStats: false, // Enable logging of PeerConnection stats via the focus
61
     logStats: false, // Enable logging of PeerConnection stats via the focus
62
-//    requireDisplayName: true,//Forces the participants that doesn't have display name to enter it when they enter the room.
63
-//    startAudioMuted: 10, //every participant after the Nth will start audio muted
64
-//    startVideoMuted: 10, //every participant after the Nth will start video muted
62
+//    requireDisplayName: true, // Forces the participants that doesn't have display name to enter it when they enter the room.
63
+//    startAudioMuted: 10, // every participant after the Nth will start audio muted
64
+//    startVideoMuted: 10, // every participant after the Nth will start video muted
65
 //    defaultLanguage: "en",
65
 //    defaultLanguage: "en",
66
 // To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
66
 // To enable sending statistics to callstats.io you should provide Applicaiton ID and Secret.
67
-//    callStatsID: "",//Application ID for callstats.io API
68
-//    callStatsSecret: ""//Secret for callstats.io API
67
+//    callStatsID: "", // Application ID for callstats.io API
68
+//    callStatsSecret: "", // Secret for callstats.io API
69
     /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
69
     /*noticeMessage: 'Service update is scheduled for 16th March 2015. ' +
70
     'During that time service will not be available. ' +
70
     'During that time service will not be available. ' +
71
-    'Apologise for inconvenience.'*/
72
-    disableThirdPartyRequests: false
71
+    'Apologise for inconvenience.',*/
72
+    disableThirdPartyRequests: false,
73
 };
73
 };

Loading…
Cancel
Save