diff options
Diffstat (limited to 'makefu/2configs/nginx')
| -rw-r--r-- | makefu/2configs/nginx/iso.euer.nix | 25 | 
1 files changed, 25 insertions, 0 deletions
| diff --git a/makefu/2configs/nginx/iso.euer.nix b/makefu/2configs/nginx/iso.euer.nix new file mode 100644 index 000000000..63ef380fa --- /dev/null +++ b/makefu/2configs/nginx/iso.euer.nix @@ -0,0 +1,25 @@ +{config, pkgs, ... }: +let +  system = builtins.currentSystem; #we can also build for other platforms +  iso = (import <nixpkgs/nixos/lib/eval-config.nix> +      { inherit system; +        modules = [ ../../1systems/iso/config.nix ]; } + +    ); +  image = iso.config.system.build.isoImage; +  name = iso.config.isoImage.isoName; +in +{ +  services.nginx = { +    virtualHosts = { +      "iso.euer.krebsco.de" = { +        enableACME = true; +        forceSSL = true; +        locations."/" = { +            root = "${image}/iso"; +            index = name; +        }; +      }; +    }; +  }; +} | 
