mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 21:32:33 +02:00
302f0ceec9
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
20 lines
429 B
Nix
20 lines
429 B
Nix
# Cyberchef is a web app for analyzing and decoding data.
|
|
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
services = {
|
|
nginx.virtualHosts."cyberchef.local" = {
|
|
root = "${pkgs.cyberchef}/share/cyberchef";
|
|
listen = [
|
|
{
|
|
addr = "127.0.0.1";
|
|
port = 8754;
|
|
}
|
|
];
|
|
};
|
|
cloudflared.tunnels."${config.var.tunnelId}".ingress."cyberchef.${config.var.domain}" = "http://localhost:8754";
|
|
};
|
|
}
|