starlight: remove nginx

This commit is contained in:
Artemis Tosini 2020-12-12 03:25:21 +00:00
parent bf2a24e7e6
commit c4e893ec6d
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
2 changed files with 0 additions and 19 deletions

View file

@ -4,7 +4,6 @@
imports = [
./boot-config.nix
./hardware-configuration.nix
./nginx.nix
../../private/starlight.nix
../../sets/cpu/amd.nix
../../sets/fpga.nix

View file

@ -1,18 +0,0 @@
{ pkgs, config, ... }:
{
security.acme = {
acceptTerms = true;
email = "me@artem.ist";
};
services.nginx = {
enable = true;
package = pkgs.nginxMainline;
virtualHosts."starlight.manehattan.artem.ist" = {
default = true;
forceSSL = true;
enableACME = true;
root = "/srv/nginx/starlight.manehattan.artem.ist";
};
};
}