mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 17:56:35 +05:30
feat: add kasm workspaces
This commit is contained in:
24
modules/nixos/selfhosted/kasmweb.nix
Normal file
24
modules/nixos/selfhosted/kasmweb.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{lib, ...}: {
|
||||
services = {
|
||||
kasmweb = {
|
||||
enable = true;
|
||||
listenPort = 8843;
|
||||
};
|
||||
|
||||
nginx = {
|
||||
enable = lib.mkForce true;
|
||||
virtualHosts = {
|
||||
"kasm.tux.rs" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "tux.rs";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "https://127.0.0.1:8843";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user