Files
nixos/hosts/2maccabees/vhosts.nix
T

17 lines
530 B
Nix
Raw Normal View History

2022-04-11 09:38:00 -05:00
# 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
{ ... }:
{
services.nginx = {
enable = true;
# A proxy front-end for Syncthing
virtualHosts."dns.thehellings.lan" = {
2022-04-11 15:22:23 -05:00
locations."/sync/".proxyPass = "http://127.0.0.1:8384/";
2022-04-11 09:38:00 -05:00
serverAliases = [ "dns" ];
};
};
}