ghatanothoa: Neues Jitsi #17
No reviewers
Labels
No labels
Kind/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Fachschaft/nixConfig#17
Loading…
Reference in a new issue
No description provided.
Delete branch "Gonne/nixConfig:ghatanothoa"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
We probably want additional persistence of
/var/lib/jisti-meet
and/var/lib/prosody
Also is jitsi tied to hard to the machine? Can't we make a role out of it. Or a module with a little amount of options?
If that is possible I would prefer that.
@ -0,0 +3,4 @@
imports = [
./hardware-configuration.nix
(import ./jitsi.nix flake-inputs)
jitsi.nix does not use flake-inputs ever, why not scratch that parameter from the module and don't apply it here
@ -0,0 +1,23 @@
flake-inputs:
We never use this input, so why not scratch it
@ -0,0 +19,4 @@
services.nginx.virtualHosts."meet.mathebau.de".enableACME = false;
services.nginx.virtualHosts."meet.mathebau.de".forceSSL = false;
networking.firewall.allowedTCPPorts = [ 80 443 ];
networking.firewall.allowedUDPPorts = [ 10000 ];
isn't this handled by
services.jitsi-videobridge.openFirewall = true;
If it is, I would not want to have that again explicitly. (or at least a comment why we want to set it explicitly again). (Or maybe I'm wrong)41c4af643d
to4b0c3f7948
@ -0,0 +15,4 @@
enable = mkEnableOption "mathebau jitsi service";
hostName = mkOption {
type = str;
default = null;
I think setting
default = null;
is not the same as setting no default.I guess you want no default so just delete the line.
(See lengthy reference)
4b0c3f7948
tobb93d3aed5