mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 16:55:00 +01:00
20 lines
395 B
Nix
20 lines
395 B
Nix
{ pkgs, config, ... }: {
|
|
networking.firewall.allowedTCPPorts = [
|
|
22
|
|
443
|
|
];
|
|
|
|
services.caddy = {
|
|
enable = true;
|
|
configFile = pkgs.writeText "Caddyfile"
|
|
(
|
|
builtins.readFile ./Caddyfile +
|
|
''
|
|
${config.networking.hostName}.infra.noratrieb.dev {
|
|
root * ${./debugging-page}
|
|
file_server
|
|
}
|
|
''
|
|
);
|
|
};
|
|
}
|