Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/4c83a790ac9b040da1f11ad2cbe13d3fc5f480e9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
21 additions and
7 deletions
@ -38,7 +38,6 @@ echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.co
$STD apt-get update
$STD apt-get install -y nodejs
$STD npm install -g pnpm@9.7.1
$STD npm install -g pm2
export NODE_OPTIONS = "--max_old_space_size=4096"
msg_ok "Installed Node.js, pnpm & pm2"
@ -77,15 +76,30 @@ cat <<EOF >/opt/tianji/src/server/.env
DATABASE_URL = " postgresql:// $DB_USER : $DB_PASS @localhost:5432/ $DB_NAME ?schema=public "
JWT_SECRET = " $TIANJI_SECRET "
EOF
cd /opt/tianji
$STD npm install pm2 -g
$STD pm2 install pm2-logrotate
cd src/server
cd /opt/tianji/src/server
$STD pnpm db:migrate:apply
$STD pm2 start /opt/tianji/src/server/dist/src/server/main.js --name tianji
$STD pm2 save
msg_ok "Installed Tianji"
msg_info "Creating Service"
cat <<EOF >/etc/systemd/system/tianji.service
[ Unit]
Description = Tianji Server
After = network.target
[ Service]
ExecStart = /usr/bin/node /opt/tianji/src/server/dist/src/server/main.js
WorkingDirectory = /opt/tianji/src/server
Restart = always
RestartSec = 10
Environment = NODE_ENV = production
[ Install]
WantedBy = multi-user.target
EOF
systemctl enable -q --now tianji.service
msg_ok "Created Service"
motd_ssh
customize