From 69f6d02c63e941c230ff8f172c9a8af73a40dc52 Mon Sep 17 00:00:00 2001 From: toufic ar Date: Wed, 22 Apr 2026 14:25:15 +0300 Subject: homepage to aphrodite --- aphrodite/http/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 aphrodite/http/default.nix (limited to 'aphrodite/http') diff --git a/aphrodite/http/default.nix b/aphrodite/http/default.nix new file mode 100644 index 0000000..22a39b2 --- /dev/null +++ b/aphrodite/http/default.nix @@ -0,0 +1,9 @@ +{config, ...}: let + customDomain = config.customOps.domain.fqdn; +in { + services.nginx.virtualHosts.${customDomain} = { + root = "/var/www/${customDomain}"; + forceSSL = true; + enableACME = true; + }; +} -- cgit v1.2.3