From d1a2d2da3f6ddfedb540462ac33c2119aeb9087f Mon Sep 17 00:00:00 2001 From: Avery Date: Fri, 14 Feb 2025 22:21:46 +0100 Subject: [PATCH] Don't force SSL --- hosts/greatyamada/services/nginx.nix | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/hosts/greatyamada/services/nginx.nix b/hosts/greatyamada/services/nginx.nix index c7da12d..acfc7ad 100644 --- a/hosts/greatyamada/services/nginx.nix +++ b/hosts/greatyamada/services/nginx.nix @@ -1,11 +1,8 @@ -{ pkgs, ... }: { +{ ... }: { services.nginx = { enable = true; virtualHosts = { - "rcia.dev" = { - forceSSL = true; - locations."/" = { root = /var/www/public; }; - }; + "rcia.dev" = { locations."/" = { root = /var/www/public; }; }; }; }; }