mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: adds jitsi-meet (though that breaks due to ssl right now)
This commit is contained in:
parent
69d170c965
commit
51db06e649
1 changed files with 21 additions and 11 deletions
|
|
@ -1,17 +1,27 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
services.jitsi-meet = {
|
services = {
|
||||||
enable = true;
|
jitsi-meet = {
|
||||||
hostName = "meet.liv.town";
|
enable = true;
|
||||||
config = {
|
hostName = "meet.liv.town";
|
||||||
prejoinPageEnabled = true;
|
prosody.lockdown = true;
|
||||||
disableModeratorIndicator = true;
|
config = {
|
||||||
|
enableWelcomePage = false;
|
||||||
|
prejoinPageEnabled = true;
|
||||||
|
};
|
||||||
|
interfaceConfig = {
|
||||||
|
SHOW_JITSI_WATERMARK = false;
|
||||||
|
SHOW_WATERMARK_FOR_GUESTS = false;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
interfaceConfig = {
|
nginx.virtualHosts."meet.liv.town" = {
|
||||||
SHOW_JITSI_WATERMARK = false;
|
forceSSL = true;
|
||||||
|
sslCertificate = "/var/lib/acme/liv.town/cert.pem";
|
||||||
|
sslCertificateKey = "/var/lib/acme/liv.town/key.pem";
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://localhost:8080";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
jibri.enable = false;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
services.jitsi-videobridge.openFirewall = true;
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue