File tree Expand file tree Collapse file tree 5 files changed +415
-120
lines changed Expand file tree Collapse file tree 5 files changed +415
-120
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,7 @@ go build
51
51
- ` LOG_RESPONSES ` : Log outgoing responses (default: false)
52
52
- ` LOG_ERRORS ` : Log proxy errors (default: true)
53
53
- ` LOG_FILE ` : Log to file instead of stderr
54
- - ` HEALTH_CHECK ` : Health check endpoint path (default: "/health")
55
- - ` RETRY_ATTEMPTS ` : Number of retry attempts (default: 3)
54
+ - ` HEALTH_ROUTE ` : Health check route path (default: "/health")
56
55
57
56
### Configuration File Format
58
57
Original file line number Diff line number Diff line change @@ -2,7 +2,15 @@ module github.com/presbrey/lightymux
2
2
3
3
go 1.23.1
4
4
5
- require github.com/fsnotify/fsnotify v1.8.0
5
+ require (
6
+ github.com/fsnotify/fsnotify v1.8.0
7
+ github.com/stretchr/testify v1.10.0
8
+ )
9
+
10
+ require (
11
+ github.com/davecgh/go-spew v1.1.1 // indirect
12
+ github.com/pmezard/go-difflib v1.0.0 // indirect
13
+ )
6
14
7
15
require (
8
16
github.com/caarlos0/env/v11 v11.3.1
Original file line number Diff line number Diff line change 1
1
github.com/caarlos0/env/v11 v11.3.1 h1:cArPWC15hWmEt+gWk7YBi7lEXTXCvpaSdCiZE2X5mCA =
2
2
github.com/caarlos0/env/v11 v11.3.1 /go.mod h1:qupehSf/Y0TUTsxKywqRt/vJjN5nz6vauiYEUUr8P4U =
3
+ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
4
+ github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
3
5
github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/8M =
4
6
github.com/fsnotify/fsnotify v1.8.0 /go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0 =
7
+ github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
8
+ github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
9
+ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA =
10
+ github.com/stretchr/testify v1.10.0 /go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY =
5
11
golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE =
6
12
golang.org/x/sys v0.13.0 /go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg =
7
13
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM =
You can’t perform that action at this time.
0 commit comments