Allow self signed certs and increase a bit the timings

This commit is contained in:
Daniel García
2019-09-11 22:01:42 +02:00
parent ae8bf954c1
commit f9408a00c6
11 changed files with 11 additions and 11 deletions

View File

@@ -4,5 +4,5 @@ if [ -z "$ROCKET_TLS"]
then
curl --fail http://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
else
curl --fail https://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
curl --insecure --fail https://localhost:${ROCKET_PORT:-"80"}/alive || exit 1
fi