mirror of https://github.com/tteck/Proxmox.git
Fix Peanut script following latest release (v3) (#3953)
This commit is contained in:
parent
0ab3151825
commit
b4732cd8e9
|
@ -44,6 +44,15 @@ $STD npm install -g pnpm
|
||||||
$STD pnpm i
|
$STD pnpm i
|
||||||
$STD pnpm run build
|
$STD pnpm run build
|
||||||
cp -r .next/static .next/standalone/.next/
|
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_ok "Installed Peanut"
|
||||||
|
|
||||||
msg_info "Creating Service"
|
msg_info "Creating Service"
|
||||||
|
@ -57,10 +66,10 @@ Restart=always
|
||||||
RestartSec=5
|
RestartSec=5
|
||||||
Type=simple
|
Type=simple
|
||||||
Environment="NODE_ENV=production"
|
Environment="NODE_ENV=production"
|
||||||
Environment="NUT_HOST=localhost"
|
#Environment="NUT_HOST=localhost"
|
||||||
Environment="NUT_PORT=3493"
|
#Environment="NUT_PORT=3493"
|
||||||
Environment="WEB_HOST=0.0.0.0"
|
#Environment="WEB_HOST=0.0.0.0"
|
||||||
Environment="WEB_PORT=3000"
|
#Environment="WEB_PORT=3000"
|
||||||
WorkingDirectory=/opt/peanut
|
WorkingDirectory=/opt/peanut
|
||||||
ExecStart=node /opt/peanut/.next/standalone/server.js
|
ExecStart=node /opt/peanut/.next/standalone/server.js
|
||||||
TimeoutStopSec=30
|
TimeoutStopSec=30
|
||||||
|
|
Loading…
Reference in New Issue