chg: use default server instead of hostname

master
root 2020-08-10 18:53:09 +00:00
parent a1382168cc
commit e0c48fbac0
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@
# Nginx webserver configuration # Nginx webserver configuration
services.nginx = { services.nginx = {
enable = true; enable = true;
virtualHosts."levitest" = { virtualHosts."default_server" = {
root = "/var/www/default"; root = "/var/www/default";
}; };
}; };
@ -122,7 +122,7 @@
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wget vim git htop tmux nginx wget vim git htop tmux
]; ];
} }