Browse Source

s/jitmeet/jitsi in exmaple config files.

j8
Boris Grozev 11 years ago
parent
commit
2bbf7e205c

+ 4
- 4
doc/example-config-files/config.js.example View File

@@ -1,9 +1,9 @@
1 1
 var config = {
2 2
     hosts: {
3
-        domain: 'jitmeet.example.com',
4
-        muc: 'conference.jitmeet.example.com', // FIXME: use XEP-0030
5
-        bridge: 'jitsi-videobridge.jitmeet.example.com' // FIXME: use XEP-0030
3
+        domain: 'jitsi.example.com',
4
+        muc: 'conference.jitsi.example.com', // FIXME: use XEP-0030
5
+        bridge: 'jitsi-videobridge.jitsi.example.com' // FIXME: use XEP-0030
6 6
     },
7 7
     useNicks: false,
8
-    bosh: '//jitmeet.example.com/http-bind' // FIXME: use xep-0156 for that
8
+    bosh: '//jitsi.example.com/http-bind' // FIXME: use xep-0156 for that
9 9
 };

doc/example-config-files/jitmeet.example.com.example → doc/example-config-files/jitsi.example.com.example View File

@@ -1,9 +1,9 @@
1 1
 server {
2 2
     listen 80;
3 3
 
4
-    server_name jitmeet.example.com;
4
+    server_name jitsi.example.com;
5 5
     # set the root
6
-    root /srv/jitmeet.example.com;
6
+    root /srv/jitsi.example.com;
7 7
     index index.html;
8 8
 
9 9
     location ~ ^/([a-zA-Z0-9]+)$ {
@@ -25,4 +25,4 @@ server {
25 25
         proxy_set_header Host $host;
26 26
         tcp_nodelay on;
27 27
     }
28
-}
28
+}

+ 6
- 6
doc/example-config-files/prosody.cfg.lua.example View File

@@ -73,7 +73,7 @@ modules_enabled = {
73 73
 		--"watchregistrations"; -- Alert admins of registrations
74 74
 		--"motd"; -- Send a message to users when they log in
75 75
 		--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
76
-	-- jitmeet
76
+	-- jitsi
77 77
 		"smacks";
78 78
 		"carbons";
79 79
 		"mam";
@@ -167,7 +167,7 @@ log = {
167 167
 
168 168
 --VirtualHost "localhost"
169 169
 
170
-VirtualHost "jitmeet.example.com"
170
+VirtualHost "jitsi.example.com"
171 171
 	-- enabled = false -- Remove this line to enable this host
172 172
 	authentication = "anonymous"
173 173
 	-- Assign this host a certificate for TLS, otherwise it would use the one
@@ -175,8 +175,8 @@ VirtualHost "jitmeet.example.com"
175 175
 	-- Note that old-style SSL on port 5223 only supports one certificate, and will always
176 176
 	-- use the global one.
177 177
 	ssl = {
178
-		key = "/var/lib/prosody/jitmeet.example.com.key";
179
-		certificate = "/var/lib/prosody/jitmeet.example.com.crt";
178
+		key = "/var/lib/prosody/jitsi.example.com.key";
179
+		certificate = "/var/lib/prosody/jitsi.example.com.crt";
180 180
 	}
181 181
 
182 182
 ------ Components ------
@@ -199,7 +199,7 @@ VirtualHost "jitmeet.example.com"
199 199
 --Component "gateway.example.com"
200 200
 --	component_secret = "password"
201 201
 
202
-Component "conference.jitmeet.example.com" "muc"
202
+Component "conference.jitsi.example.com" "muc"
203 203
 
204
-Component "jitsi-videobridge.jitmeet.example.com"
204
+Component "jitsi-videobridge.jitsi.example.com"
205 205
     component_secret = "IfGaish6"

Loading…
Cancel
Save