mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
18 lines
486 B
Bash
18 lines
486 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -x
|
||
|
|
||
|
curl -kv --tls-max 1.0 https://localhost:8080/v2/
|
||
|
if [[ "$?" -eq 0 ]]; then echo "TLSv1.0 detected"; exit 1; fi
|
||
|
|
||
|
curl -kv --tls-max 1.1 https://localhost:8080/v2/
|
||
|
if [[ "$?" -eq 0 ]]; then echo "TLSv1.1 detected"; exit 1; fi
|
||
|
|
||
|
curl -kv --tls-max 1.2 https://localhost:8080/v2/
|
||
|
if [[ "$?" -ne 0 ]]; then echo "TLSv1.2 missing"; exit 1; fi
|
||
|
|
||
|
curl -kv --tls-max 1.3 https://localhost:8080/v2/
|
||
|
if [[ "$?" -ne 0 ]]; then echo "TLSv1.3 missing"; exit 1; fi
|
||
|
|
||
|
exit 0
|