dotfiles/nix/hosts/lemp11/modules/nginx.nix

12 lines
176 B
Nix
Raw Normal View History

{ config, ... }:
{
services.nginx = {
enable = true;
virtualHosts = {
2024-12-11 18:00:00 +00:00
"syncthing.localhost".locations."/".proxyPass = "http://localhost:8384/";
};
};
}