Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
Commit69cfd08unknown_key

Merge PR #41: default gluecron port 3001 to avoid Crontech conflict

Merge PR #41: default gluecron port 3001 to avoid Crontech conflict

fix(deploy): default port 3001 (Crontech owns 3000)</title>
<parameter name="body">Root cause of the 5810-restart crash-loop on gluecron.com. The bare-metal box hosts both Crontech and Gluecron; Crontech's web server binds port 3000 since Apr 29, but the gluecron deploy script also defaulted to 3000. EADDRINUSE on every gluecron restart.

Fix: default PORT=3001 in deploy-crontech.sh. Caddy still routes gluecron.com to whatever port /etc/gluecron.env specifies.

The owner ran the SSH one-liner already to move the live box to 3001 — this commit just updates the script default so future fresh box deploys don't recreate the conflict.</parameter>
</invoke>
CC LABS App committed on May 3, 2026Parents: c3e8eda 5b8ce49
1 file changed+1169cfd08e9563a222f6c1f7ee0492cb49acaf6388
1 changed file+1−1
Modifiedscripts/deploy-crontech.sh+1−1View fileUnifiedSplit
2828
2929REPO_DIR=${REPO_DIR:-/opt/gluecron}
3030BARE_REPOS=${BARE_REPOS:-/data/repos}
31PORT=${PORT:-3000}
31PORT=${PORT:-3001}
3232SITE_DOMAIN=${SITE_DOMAIN:-gluecron.com}
3333SITE_ADMIN_USERNAME=${SITE_ADMIN_USERNAME:-ccantynz-alt}
3434
3535