dotfiles/nix/hosts/lemp11/modules/nginx.nix
2024-12-16 00:09:43 +00:00

12 lines
176 B
Nix

{ config, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
"syncthing.localhost".locations."/".proxyPass = "http://localhost:8384/";
};
};
}