2024-06-15 18:38:17 +03:00
|
|
|
# NOTE: Imperative part:
|
|
|
|
# 1. You need to change PSQL tables owner from root to onlyoffice, too. They don't do that automatically for some reason.
|
|
|
|
# 2. TODO: Generate JWT secret at /var/lib/onlyoffice/jwt, i.e. 9wLfMGha1YrfvWpb5hyYjZf8pvJQ3swS
|
|
|
|
# See https://git.voronind.com/voronind/nixos/issues/74
|
2024-10-11 23:27:07 +03:00
|
|
|
{
|
2024-11-04 04:37:29 +03:00
|
|
|
config,
|
|
|
|
container,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
util,
|
|
|
|
...
|
|
|
|
}: let
|
|
|
|
cfg = config.container.module.office;
|
|
|
|
in {
|
|
|
|
options.container.module.office = {
|
|
|
|
enable = lib.mkEnableOption "the office web suite.";
|
|
|
|
address = lib.mkOption {
|
|
|
|
default = "10.1.0.21";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
port = lib.mkOption {
|
|
|
|
default = 8000;
|
|
|
|
type = lib.types.int;
|
|
|
|
};
|
|
|
|
domain = lib.mkOption {
|
|
|
|
default = "office.${config.container.domain}";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
storage = lib.mkOption {
|
|
|
|
default = "${config.container.storage}/office";
|
|
|
|
type = lib.types.str;
|
|
|
|
};
|
|
|
|
};
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
systemd.tmpfiles.rules = container.mkContainerDir cfg [
|
|
|
|
"data"
|
|
|
|
];
|
2024-06-25 04:04:39 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
containers.office = container.mkContainer cfg {
|
|
|
|
bindMounts = {
|
|
|
|
"/var/lib/onlyoffice" = {
|
|
|
|
hostPath = "${cfg.storage}/data";
|
|
|
|
isReadOnly = false;
|
|
|
|
};
|
|
|
|
};
|
2024-06-15 18:38:17 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# HACK: Temporarely run in docker due to https://github.com/ONLYOFFICE/onlyoffice-nextcloud/issues/931
|
|
|
|
config = { pkgs, ... }: container.mkContainerConfig cfg {
|
|
|
|
virtualisation.oci-containers.backend = "docker";
|
|
|
|
virtualisation.oci-containers.containers.office = {
|
|
|
|
autoStart = true;
|
|
|
|
image = "dockerhub.timeweb.cloud/onlyoffice/documentserver:latest";
|
|
|
|
# ports = [ "${toString cfg.port}:8000" ];
|
|
|
|
extraOptions = [
|
|
|
|
"--network=host"
|
|
|
|
"--privileged"
|
|
|
|
];
|
|
|
|
environment = {
|
|
|
|
AMQP_URI = "amqp://guest:guest@${config.container.module.rabbitmq.address}:${toString config.container.module.rabbitmq.port}";
|
|
|
|
DB_HOST = config.container.module.postgres.address;
|
|
|
|
DB_NAME = "onlyoffice";
|
|
|
|
DB_PORT = toString config.container.module.postgres.port;
|
|
|
|
DB_PWD = "onlyoffice";
|
|
|
|
DB_USER = "onlyoffice";
|
|
|
|
JWT_ENABLED = "true";
|
|
|
|
JWT_SECRET = "8wLfKGha8YRfvwpB5hYYjZf8vtUQs3wS";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-06-29 21:51:55 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# config = { pkgs, ... }: container.mkContainerConfig cfg {
|
|
|
|
# # HACK: For whatever reason it does not detect my global allowUnfree (I pass pkgs from host system in mkContainerConfig).
|
|
|
|
# nixpkgs.overlays = [ (final: prev: {
|
|
|
|
# corefonts = prev.corefonts.overrideAttrs (old: {
|
|
|
|
# meta.license = mkForce licenses.mit;
|
|
|
|
# });
|
|
|
|
# })];
|
2024-06-26 09:28:51 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# services.onlyoffice = let
|
|
|
|
# dbName = "onlyoffice";
|
|
|
|
# in {
|
|
|
|
# enable = true;
|
|
|
|
# hostname = cfg.domain;
|
2024-06-09 23:35:53 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# postgresName = dbName;
|
|
|
|
# postgresHost = config.container.module.postgres.address;
|
|
|
|
# postgresUser = dbName;
|
|
|
|
# postgresPasswordFile = "${pkgs.writeText "OfficeDbPassword" dbName}";
|
2024-06-09 23:35:53 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# jwtSecretFile = "/var/lib/onlyoffice/jwt";
|
2024-06-15 18:38:17 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# rabbitmqUrl = "amqp://guest:guest@${config.container.module.rabbitmq.address}:${toString config.container.module.rabbitmq.port}";
|
2024-06-20 17:24:03 +03:00
|
|
|
|
2024-11-04 04:37:29 +03:00
|
|
|
# examplePort = cfg.port;
|
|
|
|
# enableExampleServer = true;
|
|
|
|
# };
|
|
|
|
# };
|
|
|
|
};
|
|
|
|
};
|
2024-06-09 23:35:53 +03:00
|
|
|
}
|