Test collabora-online
This commit is contained in:
parent
45bc1eed01
commit
a30586beed
3 changed files with 25 additions and 9 deletions
15
flake.nix
15
flake.nix
|
@ -105,6 +105,21 @@
|
|||
}
|
||||
];
|
||||
};
|
||||
collabora = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
agenix.nixosModules.default
|
||||
"${inputs.nixpkgs}/nixos/modules/virtualisation/proxmox-lxc.nix"
|
||||
"${inputs.self}/systems/minimalLXCConfig.nix"
|
||||
"${inputs.self}/services"
|
||||
{
|
||||
networking.hostName = "collabora";
|
||||
services.vm_collabora = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
forgejo = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [
|
||||
|
|
|
@ -9,5 +9,6 @@
|
|||
./authentik
|
||||
./postgresql
|
||||
./onlyoffice
|
||||
./collabora
|
||||
];
|
||||
}
|
||||
|
|
|
@ -123,6 +123,15 @@ in {
|
|||
recommendedProxySettings = true;
|
||||
};
|
||||
};
|
||||
"collabora.le43.eu" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://192.168.1.19:9980";
|
||||
proxyWebsockets = true;
|
||||
recommendedProxySettings = true;
|
||||
};
|
||||
};
|
||||
"git.le43.eu" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
|
@ -152,15 +161,6 @@ in {
|
|||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
"actual.le43.eu" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://192.168.1.125:5006";
|
||||
recommendedProxySettings = true;
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue