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