nix-deploy/config/hosts/rudiger/services/nginx.nix

9 lines
167 B
Nix
Raw Normal View History

2021-09-27 14:55:55 +02:00
{ ... }:
{
imports = [ ../../../common/services/nginx.nix ];
2021-09-28 11:55:33 +02:00
services.nginx.virtualHosts."cloud.graven.dev" = {
enableACME = true;
forceSSL = true;
};
2021-09-27 14:55:55 +02:00
}