add: handle sending HTTP request to HTTPS port

This commit is contained in:
mcolonna 2025-06-09 16:25:45 +02:00
parent aa2a0d6f71
commit b7cb3733ec
3 changed files with 8 additions and 0 deletions

View file

@ -5,6 +5,7 @@ BUILD_PATH=__build/
DOCKER=docker
SRC_COMPOSE=srcs/
SRC_WWW_MORE=srcs/www/
.ONESHELL :
.SHELLFLAGS = -eu -c
@ -48,6 +49,9 @@ $(WWW_PATH) :
# move in WWW_PATH
rm -rf -- $(WWW_PATH)
mv $(BUILD_PATH)"/www/wordpress" $(WWW_PATH)
echo
echo "also copy files from $(SRC_WWW_MORE)"
cp -r $(SRC_WWW_MORE)/. $(WWW_PATH)
rm -rf $(BUILD_PATH)