From e0c48fbac0f8c34dbe817b52c0a51e512be32e02 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 10 Aug 2020 18:53:09 +0000 Subject: [PATCH] chg: use default server instead of hostname --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 7d0747a..2bccf80 100644 --- a/configuration.nix +++ b/configuration.nix @@ -59,7 +59,7 @@ # Nginx webserver configuration services.nginx = { enable = true; - virtualHosts."levitest" = { + virtualHosts."default_server" = { root = "/var/www/default"; }; }; @@ -122,7 +122,7 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - wget vim git htop tmux nginx + wget vim git htop tmux ]; }