summary refs log blame commit diff stats
path: root/system/services/nginx/default.nix
blob: b9a0754b0732fc53c0377f44ccca0bfb5b0318da (plain) (tree)
1
2
3
4
5
6
7
8
9


               


                               
                                               
      
 



                               
    
           
{...}: {
  imports = [
    ./hosts.nix
  ];
  security.acme = {
    acceptTerms = true;
    defaults = {
      email = "admin@vhack.eu";
      webroot = "/var/lib/acme/acme-challenge";
    };
  };

  networking.firewall = {
    allowedTCPPorts = [80 443];
  };
  services.nginx = {
    enable = true;
  };
}
# vim: ts=2