Archived
1
0
This repository has been archived on 2026-05-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
spacestation/common/caddy.nix

10 lines
205 B
Nix

{...}: {
services.caddy.enable = true;
# Some services try to enable nginx as their reverse proxy
services.nginx.enable = false;
# Caddy Ports
networking.firewall.allowedTCPPorts = [80 433];
}