mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
13 lines
215 B
Nix
13 lines
215 B
Nix
{
|
|
config,
|
|
lib,
|
|
meta,
|
|
...
|
|
}:
|
|
with lib; {
|
|
services.nginx.virtualHosts."cloud.${config.networking.domain}" = {
|
|
locations = {
|
|
"/".proxyPass = meta.tailnet.yukari.ppp 4 80 "nextcloud/";
|
|
};
|
|
};
|
|
}
|