diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 16607bb..69ec918 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Go 1.18 + - name: Set up Go 1.21 uses: actions/setup-go@v2 with: - go-version: 1.18 + go-version: 1.21 id: go - name: Check out code into the Go module directory diff --git a/Dockerfile b/Dockerfile index dfbf5fe..e302373 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM golang:1.18.3-alpine WORKDIR /go/src/github.com/suyashkumar/ssl-proxy RUN apk add --no-cache make git zip -RUN go get -u github.com/golang/dep/cmd/dep COPY . . +RUN go get -u github.com/golang/dep/cmd/dep RUN make diff --git a/go.mod b/go.mod index ebf9da3..f4061c8 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/suyashkumar/ssl-proxy -go 1.18 +go 1.21 require ( github.com/stretchr/testify v1.7.0 diff --git a/reverseproxy/reverseproxy.go b/reverseproxy/reverseproxy.go index fcd0fc8..42a6f27 100644 --- a/reverseproxy/reverseproxy.go +++ b/reverseproxy/reverseproxy.go @@ -32,11 +32,6 @@ func newDirector(target *url.URL, extraDirector func(*http.Request)) func(*http. } else { req.URL.RawQuery = targetQuery + "&" + req.URL.RawQuery } - if _, ok := req.Header["User-Agent"]; !ok { - // explicitly disable User-Agent so it's not set to default value - req.Header.Set("User-Agent", "") - } - if extraDirector != nil { extraDirector(req) }