From 5dab6377bcde25a9bfa772511964fa80adbd3ac2 Mon Sep 17 00:00:00 2001 From: Dmitrii Iurco Date: Mon, 11 May 2026 04:33:51 -0400 Subject: [PATCH] Restore https:// now that git.pic.ngo has a TLS certificate Co-Authored-By: Claude Sonnet 4.6 --- QUICKSTART.md | 6 +++--- install.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/QUICKSTART.md b/QUICKSTART.md index f23e7da..d617262 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -17,13 +17,13 @@ The installer handles all software dependencies (git, docker, make, etc.) automa ## Option A — One-line installer (recommended) ```bash -curl -fsSL http://install.pic.ngo | sudo bash +curl -fsSL https://install.pic.ngo | sudo bash ``` Always review the script before running it: ```bash -curl -fsSL http://install.pic.ngo | less +curl -fsSL https://install.pic.ngo | less ``` The installer: @@ -47,7 +47,7 @@ http://:8081/setup Use this if you want to control where PIC is installed, or if you are installing on a machine that already has Docker. ```bash -git clone http://git.pic.ngo/roof/pic.git pic +git clone https://git.pic.ngo/roof/pic.git pic cd pic sudo make install make start-core diff --git a/install.sh b/install.sh index 1aba5f8..c3590c4 100755 --- a/install.sh +++ b/install.sh @@ -36,7 +36,7 @@ set -euo pipefail # Configuration # --------------------------------------------------------------------------- PIC_DIR="${PIC_DIR:-/opt/pic}" -PIC_REPO="${PIC_REPO:-http://git.pic.ngo/roof/pic.git}" +PIC_REPO="${PIC_REPO:-https://git.pic.ngo/roof/pic.git}" PIC_USER="${PIC_USER:-pic}" API_HEALTH_URL="http://127.0.0.1:3000/health" API_HEALTH_TIMEOUT=60