Files
nixos/hosts/2maccabees/vhosts.nix
T
2022-04-20 11:11:35 -05:00

17 lines
545 B
Nix

# Virtual hosts that don't seem to have any better place to live should go in here.
# There are others that are specific to their own purposese scattered about in the
# configuration in places where they more naturally live. This is more of a catchall
# for ones that do not have a better place to live
{ ... }:
{
greg.proxies."dns.thehellings.lan" = {
target = "http://127.0.0.1:8384/";
ssl = false;
path = "/sync/";
};
# The module doesn't handle this
services.nginx.virtualHosts."dns.thehellings.lan".serverAliases = [ "dns" ];
}