mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(docker): nginx health check
nginx health check always results in "unhealthy": There is no such option "--no-verify" for curl. We can use "-k" or "--insecure" for disabling SSL checks. Signed-off-by: moson-mo <mo-son@mailbox.org>
This commit is contained in:
parent
ff44eb02de
commit
2150f8bc19
1 changed files with 1 additions and 1 deletions
|
@ -1,2 +1,2 @@
|
|||
#!/bin/bash
|
||||
exec curl --no-verify -q https://localhost:8444
|
||||
exec curl -k -q https://localhost:8444
|
||||
|
|
Loading…
Add table
Reference in a new issue