Add matrix server + element #99

Open
opened 2024-06-29 12:18:45 +03:00 by voronind · 1 comment
Owner
No description provided.
voronind added the
Roadmap
label 2024-06-29 12:18:45 +03:00
Author
Owner
{
  inputs,
  pkgs,
  ...
}: {
  persist.directories = ["/var/lib/private/matrix-conduit"];
  services.matrix-conduit = {
    enable = true;
    package = inputs.conduwuit.packages.${pkgs.system}.default;
    settings.global = {
      port = 8001;
      server_name = "nhnn.dev";
      database_backend = "rocksdb";
      allow_registration = false;
      allow_federation = true;
      address = "0.0.0.0";
      allow_check_for_updates = true;
      allow_guest_registration = false;
      rocksdb_optimize_for_spinning_disks = true;
    };
  };
}

в конфиге нгинкса тупо root ${pkgs.cinny}

```nix { inputs, pkgs, ... }: { persist.directories = ["/var/lib/private/matrix-conduit"]; services.matrix-conduit = { enable = true; package = inputs.conduwuit.packages.${pkgs.system}.default; settings.global = { port = 8001; server_name = "nhnn.dev"; database_backend = "rocksdb"; allow_registration = false; allow_federation = true; address = "0.0.0.0"; allow_check_for_updates = true; allow_guest_registration = false; rocksdb_optimize_for_spinning_disks = true; }; }; } ``` > в конфиге нгинкса тупо root ${pkgs.cinny}
voronind added
Future
and removed
Roadmap
labels 2024-08-22 05:18:36 +03:00
voronind changed title from add matrix server + element to Add matrix server + element 2024-08-24 20:50:57 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: voronind/nix#99
No description provided.