Files
nixy/server-modules/cyberchef.nix
2026-03-25 18:35:27 +01:00

16 lines
415 B
Nix

# Cyberchef is a web app for analyzing and decoding data.
{pkgs, ...}: {
services = {
nginx.virtualHosts."cyberchef.local" = {
root = "${pkgs.cyberchef}/share/cyberchef";
listen = [
{
addr = "127.0.0.1";
port = 8754;
}
];
};
cloudflared.tunnels."a1dfa315-7fc3-4a65-8c02-8387932c35c3".ingress."cyberchef.hadi.icu" = "http://localhost:8754";
};
}