feat(init): first commit
This commit is contained in:
7
files/common/healthcheck/check-multiple.sh
Normal file
7
files/common/healthcheck/check-multiple.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
for CHECK in $@; do
|
||||
/bin/sh "/usr/local/share/cadoles-symfony/healthcheck/check-${CHECK}.sh"
|
||||
done
|
5
files/common/healthcheck/check-nginx.sh
Normal file
5
files/common/healthcheck/check-nginx.sh
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
wget --quiet --tries=1 --spider 127.0.0.1:8090/healthcheck || exit 1;
|
5
files/common/healthcheck/check-php-fpm.sh
Normal file
5
files/common/healthcheck/check-php-fpm.sh
Normal file
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
# TODO
|
Reference in New Issue
Block a user