mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 06:50:14 +01:00
37 lines
987 B
Nix
37 lines
987 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services = {
|
|
guacamole-server = {
|
|
enable = false;
|
|
package = pkgs.guacamole-server;
|
|
host = "127.0.0.1";
|
|
port = 4822;
|
|
userMappingXml = ./guacamole-user-mapping.xml;
|
|
};
|
|
guacamole-client = {
|
|
enable = false;
|
|
package = pkgs.guacamole-client;
|
|
enableWebserver = false;
|
|
settings = {
|
|
guacd-port = 4822;
|
|
guacd-hostname = "localhost";
|
|
};
|
|
};
|
|
anubis.instances.guacamole = {
|
|
settings = {
|
|
TARGET = "http://localhost:4822";
|
|
BIND = ":4883";
|
|
BIND_NETWORK = "tcp";
|
|
};
|
|
};
|
|
nginx.virtualHosts."remote.liv.town" = {
|
|
forceSSL = true;
|
|
sslCertificate = "/var/lib/acme/liv.town/cert.pem";
|
|
sslCertificateKey = "/var/lib/acme/liv.town/key.pem";
|
|
locations."/" = {
|
|
proxyPass = "http://localhost${toString config.services.anubis.instances.guacamole.settings.BIND}";
|
|
proxyWebsockets = true;
|
|
};
|
|
};
|
|
};
|
|
}
|