Productionize Hugo Configuration #8

Merged
me merged 4 commits from dev into main 2025-08-15 12:13:16 -07:00
Showing only changes of commit 5323b6647f - Show all commits

View File

@@ -28,7 +28,7 @@ if [[ "$PROD" == "Y"* || "$PROD" == "T"* ]]; then
echo "* Prod server not detected, starting..."
service nginx start
}
sleep 30
sleep 15
done &
cd /var/log/nginx
@@ -45,7 +45,7 @@ if [[ "$DEV" == "Y"* || "$DEV" == "T"* ]]; then
killall hugo 2>/dev/null
sudo -u hugo hugo server -D --noBuildLock --bind 0.0.0.0 -p 1380 &
}
sleep 10
sleep 30
done &
fi