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; }; }; }; }; }