Skip to content

Commit 138884d

Browse files
authored
add website feature
1 parent 2d775af commit 138884d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

reality-ezpz.sh

+10-3
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ echo "
761761
expose:
762762
- 80
763763
restart: always
764+
volumes:
765+
- ./website:/usr/share/nginx/html
764766
networks:
765767
- reality
766768
haproxy:
@@ -789,6 +791,7 @@ echo "
789791
- ./$(dirname "${path[server_pem]#${config_path}/}"):/certificate
790792
- ./${path[certbot_deployhook]#${config_path}/}:/deployhook.sh
791793
- ./${path[certbot_startup]#${config_path}/}:/startup.sh
794+
- ./website:/website
792795
networks:
793796
- reality
794797
entrypoint: /bin/sh
@@ -907,13 +910,17 @@ awk -F= '{print \$2}' | tr -d : | tr '[:upper:]' '[:lower:]')
907910
fi
908911
fi
909912
while true; do
910-
response=\$(curl -skL --max-time 3 http://${config[server]})
911-
if echo "\$response" | grep 'Welcome to nginx!' >/dev/null; then
913+
ls -d /website/* | grep -E '^/website/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\$'|xargs rm -f
914+
uuid=\$(uuidgen)
915+
echo "\$uuid" > "/website/\$uuid"
916+
response=\$(curl -skL --max-time 3 http://${config[server]}/\$uuid)
917+
if echo "\$response" | grep \$uuid >/dev/null; then
912918
break
913919
fi
914920
echo "Domain ${config[server]} is not pointing to the server"
915921
sleep 5
916922
done
923+
ls -d /website/* | grep -E '^/website/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\$'|xargs rm -f
917924
while true; do
918925
certbot certonly -n \\
919926
--standalone \\
@@ -952,7 +959,7 @@ EOF
952959
function generate_certbot_dockerfile {
953960
cat >"${path[certbot_dockerfile]}" << EOF
954961
FROM ${image[certbot]}
955-
RUN apk add --no-cache docker-cli-compose curl
962+
RUN apk add --no-cache docker-cli-compose curl uuidgen
956963
EOF
957964
}
958965

0 commit comments

Comments
 (0)