From ed248959c1df59bf93edc755549a00c070525f7b Mon Sep 17 00:00:00 2001 From: Mel Date: Fri, 13 Sep 2024 20:00:27 +0000 Subject: Enable SSL for default server name domain --- configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index a240857..fafa7b5 100644 --- a/configuration.nix +++ b/configuration.nix @@ -106,7 +106,11 @@ in services.nginx.virtualHosts = { default = { default = true; }; - "${me.name}.rnrd.eu" = { root = "/var/www/html"; }; + "${me.name}.rnrd.eu" = { + root = "/var/www/html"; + forceSSL = true; + enableACME = true; + }; }; -- cgit 1.4.1