Fix caddy logging
Some checks failed
Run nix flake check / flake-check (push) Failing after 9m1s
Periodic flake update / flake-update (push) Successful in 1m36s

This commit is contained in:
2025-01-28 00:49:22 +01:00
parent 399c853f0c
commit e366a05204
3 changed files with 49 additions and 12 deletions

View File

@@ -2,6 +2,7 @@
{
services.caddy = {
enable = true;
package = pkgs.unstable.caddy;
configFile = pkgs.writeText "Caddyfile" ''
{
acme_ca https://ca.home.2rjus.net/acme/acme/directory
@@ -9,7 +10,9 @@
nix-cache.home.2rjus.net {
log {
output file /var/log/caddy/nix-cache.log
output file /var/log/caddy/nix-cache.log {
mode 644
}
}
reverse_proxy http://localhost:5000
}