File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ echo "
761
761
expose:
762
762
- 80
763
763
restart: always
764
+ volumes:
765
+ - ./website:/usr/share/nginx/html
764
766
networks:
765
767
- reality
766
768
haproxy:
@@ -789,6 +791,7 @@ echo "
789
791
- ./$( dirname " ${path[server_pem]# ${config_path} / } " ) :/certificate
790
792
- ./${path[certbot_deployhook]# ${config_path} / } :/deployhook.sh
791
793
- ./${path[certbot_startup]# ${config_path} / } :/startup.sh
794
+ - ./website:/website
792
795
networks:
793
796
- reality
794
797
entrypoint: /bin/sh
@@ -907,13 +910,17 @@ awk -F= '{print \$2}' | tr -d : | tr '[:upper:]' '[:lower:]')
907
910
fi
908
911
fi
909
912
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
912
918
break
913
919
fi
914
920
echo "Domain ${config[server]} is not pointing to the server"
915
921
sleep 5
916
922
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
917
924
while true; do
918
925
certbot certonly -n \\
919
926
--standalone \\
952
959
function generate_certbot_dockerfile {
953
960
cat > " ${path[certbot_dockerfile]} " << EOF
954
961
FROM ${image[certbot]}
955
- RUN apk add --no-cache docker-cli-compose curl
962
+ RUN apk add --no-cache docker-cli-compose curl uuidgen
956
963
EOF
957
964
}
958
965
You can’t perform that action at this time.
0 commit comments