12 lines
176 B
Nix
12 lines
176 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
|
|
virtualHosts = {
|
|
"syncthing.localhost".locations."/".proxyPass = "http://localhost:8384/";
|
|
};
|
|
};
|
|
}
|