summary refs log tree commit diff
path: root/services/documents.nix
blob: b438e9e4e788c05b3448c57fc04b8a5c9fa1a686 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ config, pkgs, lib, ... }:

{
  services.collabora-online = {
    enable = true;

    # This is the default, set explicitly here to make it easier to find.
    port = 9980;

    settings = {
      # The service is behind our reverse proxy, so we need to tell it so.
      ssl = {
        enable = false;
        termination = true;
      };
    };
  };
}