# SPDX-FileCopyrightText: 2024 Clicks Codes | |
# | |
# SPDX-License-Identifier: GPL-3.0-only | |
{ lib, inputs, ... }: | |
{ | |
nginx.stream = { | |
proxyStream = external: internal: protocol: { | |
inherit external internal protocol; | |
haproxy = true; | |
}; | |
stream = external: internal: protocol: { | |
inherit external internal protocol; | |
haproxy = false; | |
}; | |
}; | |
} |