Skip to content

Commit

Permalink
fix: resolve tcp conn limit gateway error
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed May 26, 2023
1 parent 0b62b6a commit a04b757
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 4 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion flake.nix
Expand Up @@ -32,7 +32,7 @@
flake = false;
};

openziti.url = "github:johnalotoski/openziti-bins";
openziti.url = "github:johnalotoski/openziti-bins/large-tcp";
deploy-rs.url = "github:serokell/deploy-rs";
# --------------------------------------------------------------

Expand Down
7 changes: 5 additions & 2 deletions nix/metal/ziti.nix
@@ -1,4 +1,4 @@
{lib, ...}: let
{lib, self, pkgs, ...}: let
awsExt-to-equinix-host-v1 = builtins.toJSON {
allowedAddresses = ["10.12.171.0/24"];
allowedPortRanges = [
Expand Down Expand Up @@ -75,7 +75,10 @@ in {
services = {
ziti-router.enable = true;
ziti-console.enable = true;
ziti-edge-tunnel.enable = true;
ziti-edge-tunnel = {
enable = true;
package = self.inputs.openziti.packages.${pkgs.system}.ziti-edge-tunnel_latest_large_tcp;
};

ziti-controller = {
enable = true;
Expand Down

0 comments on commit a04b757

Please sign in to comment.