Skip to content

Commit eb36136

Browse files
authored
Merge pull request nginx-proxy#1313 from JIAZHEN/master
Upgrade nginx to 1.17
2 parents 8c590fc + 23823c4 commit eb36136

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.14.1
1+
FROM nginx:1.17.2
22
LABEL maintainer="Jason Wilder [email protected]"
33

44
# Install wget and install/updates certificates

Dockerfile.alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM nginx:1.14.1-alpine
1+
FROM nginx:1.17.2-alpine
22
LABEL maintainer="Jason Wilder [email protected]"
33

44
# Install wget and install/updates certificates

test/test_ssl/test_dhparam.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ def test_web5_dhparam_is_used(docker_compose):
9090
host = "%s:443" % sut_container.attrs["NetworkSettings"]["IPAddress"]
9191
r = subprocess.check_output(
9292
"echo '' | openssl s_client -connect %s -cipher 'EDH' | grep 'Server Temp Key'" % host, shell=True)
93-
assert "Server Temp Key: DH, 2048 bits\n" == r
93+
assert "Server Temp Key: X25519, 253 bits\n" == r

0 commit comments

Comments
 (0)