From c1789b5775760f1e190a06bed4b086cfabd95e13 Mon Sep 17 00:00:00 2001 From: bocil kematian Date: Tue, 23 Jun 2026 00:02:34 +0700 Subject: [PATCH] fix: update setup script to resolve incorrect path configuration and missing dependencies --- setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.sh b/setup.sh index 9d2abf5..caa90e5 100644 --- a/setup.sh +++ b/setup.sh @@ -18,9 +18,9 @@ echo "==========================================" echo "" # ── 1. Install system packages ──────────────────────────────────────────────── -echo "[1/6] Installing Nginx (forcing IPv4 to avoid IPv6 timeouts)..." -sudo apt-get -o Acquire::ForceIPv4=true update -sudo apt-get -o Acquire::ForceIPv4=true install -y nginx +echo "[1/6] Installing Nginx..." +sudo apt update +sudo apt install -y nginx # ── 2. Install Python packages ──────────────────────────────────────────────── echo "[2/6] Installing Python dependencies (including gunicorn)..."