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
 var config = {
1
 var config = {
2
     hosts: {
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
     useNicks: false,
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
 server {
1
 server {
2
     listen 80;
2
     listen 80;
3
 
3
 
4
-    server_name jitmeet.example.com;
4
+    server_name jitsi.example.com;
5
     # set the root
5
     # set the root
6
-    root /srv/jitmeet.example.com;
6
+    root /srv/jitsi.example.com;
7
     index index.html;
7
     index index.html;
8
 
8
 
9
     location ~ ^/([a-zA-Z0-9]+)$ {
9
     location ~ ^/([a-zA-Z0-9]+)$ {
25
         proxy_set_header Host $host;
25
         proxy_set_header Host $host;
26
         tcp_nodelay on;
26
         tcp_nodelay on;
27
     }
27
     }
28
-}
28
+}

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

73
 		--"watchregistrations"; -- Alert admins of registrations
73
 		--"watchregistrations"; -- Alert admins of registrations
74
 		--"motd"; -- Send a message to users when they log in
74
 		--"motd"; -- Send a message to users when they log in
75
 		--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
75
 		--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
76
-	-- jitmeet
76
+	-- jitsi
77
 		"smacks";
77
 		"smacks";
78
 		"carbons";
78
 		"carbons";
79
 		"mam";
79
 		"mam";
167
 
167
 
168
 --VirtualHost "localhost"
168
 --VirtualHost "localhost"
169
 
169
 
170
-VirtualHost "jitmeet.example.com"
170
+VirtualHost "jitsi.example.com"
171
 	-- enabled = false -- Remove this line to enable this host
171
 	-- enabled = false -- Remove this line to enable this host
172
 	authentication = "anonymous"
172
 	authentication = "anonymous"
173
 	-- Assign this host a certificate for TLS, otherwise it would use the one
173
 	-- Assign this host a certificate for TLS, otherwise it would use the one
175
 	-- Note that old-style SSL on port 5223 only supports one certificate, and will always
175
 	-- Note that old-style SSL on port 5223 only supports one certificate, and will always
176
 	-- use the global one.
176
 	-- use the global one.
177
 	ssl = {
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
 ------ Components ------
182
 ------ Components ------
199
 --Component "gateway.example.com"
199
 --Component "gateway.example.com"
200
 --	component_secret = "password"
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
     component_secret = "IfGaish6"
205
     component_secret = "IfGaish6"

Loading…
Cancel
Save