blob: d6a31834fb559d51a4becd8a1d8e9b8590d8b931 [file] [log] [blame]
Skyler Greyd7e1acd2024-06-22 14:42:11 +00001# SPDX-FileCopyrightText: 2024 Clicks Codes
2#
3# SPDX-License-Identifier: GPL-3.0-only
4
5{ lib, inputs, ... }:
6{
7 nginx.stream = {
8 proxyStream = external: internal: protocol: {
9 inherit external internal protocol;
10 haproxy = true;
11 };
12 stream = external: internal: protocol: {
13 inherit external internal protocol;
14 haproxy = false;
15 };
16 };
17}