add guacamole
This commit is contained in:
parent
6b82fc1bed
commit
5f5668de5f
4 changed files with 24 additions and 0 deletions
|
|
@ -59,6 +59,8 @@
|
||||||
[ "Forgejo" "forgejo" "https://git.proxy.${homelab.domain}" "http://localhost:5080/" ]
|
[ "Forgejo" "forgejo" "https://git.proxy.${homelab.domain}" "http://localhost:5080/" ]
|
||||||
[ "Dockge" "docker" "https://containers.proxy.${homelab.domain}" "http://localhost:5001/" ]
|
[ "Dockge" "docker" "https://containers.proxy.${homelab.domain}" "http://localhost:5001/" ]
|
||||||
[ "Ollama" "ollama" "https://ai.proxy.${homelab.domain}" "http://localhost:8080/" ]
|
[ "Ollama" "ollama" "https://ai.proxy.${homelab.domain}" "http://localhost:8080/" ]
|
||||||
|
[ "Guacamole" "guacamole" "https://remote.proxy.${homelab.domain}" "http://localhost:8085/" ]
|
||||||
|
[ "Immich" "immich" "https://gallery.proxy.${homelab.domain}" "http://localhost:2283/" ]
|
||||||
];
|
];
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
[ "Tailscale" "tailscale" "https://login.tailscale.com/" ]
|
[ "Tailscale" "tailscale" "https://login.tailscale.com/" ]
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@
|
||||||
# "media" = { dest = "http://localhost:8096"; auth = false; };
|
# "media" = { dest = "http://localhost:8096"; auth = false; };
|
||||||
|
|
||||||
"containers" = { dest = "http://localhost:5001"; auth = false; };
|
"containers" = { dest = "http://localhost:5001"; auth = false; };
|
||||||
|
"gallery" = { dest = "http://localhost:2283"; auth = false; };
|
||||||
|
"remote" = { dest = "http://localhost:8085"; auth = false; };
|
||||||
"auth" = { dest = "http://localhost:1411"; auth = false; };
|
"auth" = { dest = "http://localhost:1411"; auth = false; };
|
||||||
"cdn" = { dest = "http://localhost:3000"; auth = false; };
|
"cdn" = { dest = "http://localhost:3000"; auth = false; };
|
||||||
"git" = { dest = "http://localhost:5080"; auth = false; };
|
"git" = { dest = "http://localhost:5080"; auth = false; };
|
||||||
|
|
|
||||||
19
modules/system/homelab/remote.nix
Normal file
19
modules/system/homelab/remote.nix
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
{ ... }: {
|
||||||
|
services = {
|
||||||
|
guacamole-server = {
|
||||||
|
enable = true;
|
||||||
|
host = "127.0.0.1";
|
||||||
|
port = 4822;
|
||||||
|
};
|
||||||
|
guacamole-client = {
|
||||||
|
enable = true;
|
||||||
|
host = "127.0.0.1";
|
||||||
|
port = 8085;
|
||||||
|
enableWebserver = true;
|
||||||
|
settings = {
|
||||||
|
guacd-hostname = "127.0.0.1";
|
||||||
|
guacd-port = 4822;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
imports = lib.mkIf (config.specialisation != {}) [
|
imports = lib.mkIf (config.specialisation != {}) [
|
||||||
./homelab/containers.nix
|
./homelab/containers.nix
|
||||||
./homelab/gallery.nix
|
./homelab/gallery.nix
|
||||||
|
./homelab/remote.nix
|
||||||
# ./homelab/media.nix # wip
|
# ./homelab/media.nix # wip
|
||||||
./homelab/share.nix
|
./homelab/share.nix
|
||||||
./homelab/proxy.nix
|
./homelab/proxy.nix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue