From d3181d272e42c14e06ed14dfa2d4d86f73634a38 Mon Sep 17 00:00:00 2001 From: farhansolodev Date: Tue, 4 Apr 2023 00:17:52 +0400 Subject: [PATCH] revert paths --- config/generate/generate.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/config/generate/generate.go b/config/generate/generate.go index 7ed5581..6c95792 100644 --- a/config/generate/generate.go +++ b/config/generate/generate.go @@ -72,15 +72,14 @@ func SetDefaults(envName string, forceDefault bool, CustomConfig interface{}, No if len(ConfigUpdate) == 0 { //Setting default paths for the config file - Defaults.IPTable = defaultPath + "p2p/ip_table.json" - // Defaults.IPTable = defaultPath + "p2p/iptable/ip_table.json" + Defaults.IPTable = defaultPath + "p2p/iptable/ip_table.json" Defaults.DefaultDockerFile = defaultPath + "server/docker/containers/docker-ubuntu-sshd/" Defaults.DockerContainers = defaultPath + "server/docker/containers/" Defaults.SpeedTestFile = defaultPath + "p2p/50.bin" Defaults.IPV6Address = "" Defaults.PluginPath = defaultPath + "plugin/deploy" - Defaults.TrackContainersPath = defaultPath + "client/trackcontainers.json" - Defaults.GroupTrackContainersPath = defaultPath + "client/grouptrackcontainers.json" + Defaults.TrackContainersPath = defaultPath + "client/trackcontainers/trackcontainers.json" + Defaults.GroupTrackContainersPath = defaultPath + "client/trackcontainers/grouptrackcontainers.json" Defaults.ServerPort = "8088" Defaults.FRPServerPort = "True" Defaults.CustomConfig = CustomConfig