Skyler Grey | d7e1acd | 2024-06-22 14:42:11 +0000 | [diff] [blame] | 1 | # 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 | } |