Skip to content

Commit

Permalink
Merge branch 'master' into KRAK-360
Browse files Browse the repository at this point in the history
  • Loading branch information
hweawer committed Jan 7, 2025
2 parents 65b9428 + e757d98 commit 03c3aa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

# Run tests with CGO_CFLAGS set
- name: Test with the Go CLI
run: go test $(go list ./...) -cover -json > TestResults-${{ matrix.go-version }}.json
run: go test $(go list ./...) -cover -json | tee TestResults-${{ matrix.go-version }}.json
env:
CGO_CFLAGS: "-Wno-return-local-addr"

Expand Down
6 changes: 3 additions & 3 deletions nginx/config/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
Expand Down Expand Up @@ -73,9 +73,9 @@ http {
ssl_verify_client on;
ssl_client_certificate {{.ssl_client_certificate}};
{{end}}
ssl_protocols TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_protocols TLSv1.2; # Dropping SSLv3, ref: POODLE
ssl_prefer_server_ciphers on;
ssl_ciphers ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5@SECLEVEL=1;
ssl_ciphers ECDH+AES256:ECDH+AES128:DH+3DES:!ADH:!AECDH:!MD5:!SHA1:!aNULL:!eNULL@SECLEVEL=2;
##
# Logging Settings
Expand Down

0 comments on commit 03c3aa5

Please sign in to comment.