Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/b4732cd8e979a995babfa283eaf3af7a63bdda50
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
4 deletions
@ -44,6 +44,15 @@ $STD npm install -g pnpm
$STD pnpm i
$STD pnpm run build
cp -r .next/static .next/standalone/.next/
mkdir -p /opt/peanut/.next/standalone/config
cat <<EOF >/opt/peanut/.next/standalone/config/settings.yml
WEB_HOST: 0.0.0.0
WEB_PORT: 3000
NUT_HOST: 0.0.0.0
NUT_PORT: 3493
EOF
mkdir -p /etc/peanut
ln -sf /opt/peanut/.next/standalone/config/settings.yml /etc/peanut/settings.yml
msg_ok "Installed Peanut"
msg_info "Creating Service"
@ -57,10 +66,10 @@ Restart=always
RestartSec = 5
Type = simple
Environment = "NODE_ENV=production"
Environment = "NUT_HOST=localhost"
Environment = "NUT_PORT=3493"
Environment = "WEB_HOST=0.0.0.0"
Environment = "WEB_PORT=3000"
#Environment= "NUT_HOST=localhost"
#Environment= "NUT_PORT=3493"
#Environment= "WEB_HOST=0.0.0.0"
#Environment= "WEB_PORT=3000"
WorkingDirectory = /opt/peanut
ExecStart = node /opt/peanut/.next/standalone/server.js
TimeoutStopSec = 30