s/jitmeet/jitsi in exmaple config files.
This commit is contained in:
parent
7195758405
commit
2bbf7e205c
|
@ -1,9 +1,9 @@
|
|||
var config = {
|
||||
hosts: {
|
||||
domain: 'jitmeet.example.com',
|
||||
muc: 'conference.jitmeet.example.com', // FIXME: use XEP-0030
|
||||
bridge: 'jitsi-videobridge.jitmeet.example.com' // FIXME: use XEP-0030
|
||||
domain: 'jitsi.example.com',
|
||||
muc: 'conference.jitsi.example.com', // FIXME: use XEP-0030
|
||||
bridge: 'jitsi-videobridge.jitsi.example.com' // FIXME: use XEP-0030
|
||||
},
|
||||
useNicks: false,
|
||||
bosh: '//jitmeet.example.com/http-bind' // FIXME: use xep-0156 for that
|
||||
bosh: '//jitsi.example.com/http-bind' // FIXME: use xep-0156 for that
|
||||
};
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
server {
|
||||
listen 80;
|
||||
|
||||
server_name jitmeet.example.com;
|
||||
server_name jitsi.example.com;
|
||||
# set the root
|
||||
root /srv/jitmeet.example.com;
|
||||
root /srv/jitsi.example.com;
|
||||
index index.html;
|
||||
|
||||
location ~ ^/([a-zA-Z0-9]+)$ {
|
|
@ -73,7 +73,7 @@ modules_enabled = {
|
|||
--"watchregistrations"; -- Alert admins of registrations
|
||||
--"motd"; -- Send a message to users when they log in
|
||||
--"legacyauth"; -- Legacy authentication. Only used by some old clients and bots.
|
||||
-- jitmeet
|
||||
-- jitsi
|
||||
"smacks";
|
||||
"carbons";
|
||||
"mam";
|
||||
|
@ -167,7 +167,7 @@ log = {
|
|||
|
||||
--VirtualHost "localhost"
|
||||
|
||||
VirtualHost "jitmeet.example.com"
|
||||
VirtualHost "jitsi.example.com"
|
||||
-- enabled = false -- Remove this line to enable this host
|
||||
authentication = "anonymous"
|
||||
-- Assign this host a certificate for TLS, otherwise it would use the one
|
||||
|
@ -175,8 +175,8 @@ VirtualHost "jitmeet.example.com"
|
|||
-- Note that old-style SSL on port 5223 only supports one certificate, and will always
|
||||
-- use the global one.
|
||||
ssl = {
|
||||
key = "/var/lib/prosody/jitmeet.example.com.key";
|
||||
certificate = "/var/lib/prosody/jitmeet.example.com.crt";
|
||||
key = "/var/lib/prosody/jitsi.example.com.key";
|
||||
certificate = "/var/lib/prosody/jitsi.example.com.crt";
|
||||
}
|
||||
|
||||
------ Components ------
|
||||
|
@ -199,7 +199,7 @@ VirtualHost "jitmeet.example.com"
|
|||
--Component "gateway.example.com"
|
||||
-- component_secret = "password"
|
||||
|
||||
Component "conference.jitmeet.example.com" "muc"
|
||||
Component "conference.jitsi.example.com" "muc"
|
||||
|
||||
Component "jitsi-videobridge.jitmeet.example.com"
|
||||
Component "jitsi-videobridge.jitsi.example.com"
|
||||
component_secret = "IfGaish6"
|
||||
|
|
Loading…
Reference in New Issue