Skip to content

Deploy to a VPS

rednotsus edited this page Mar 4, 2024 · 12 revisions

This is assuming you have a Linux VPS.

  1. Install Node.js
    curl -fsSL https://deb.nodesource.com/setup_21.x | sudo -E bash - && sudo apt-get install -y nodejs

  2. Install PM2
    npm install pm2@latest -g

  3. Clone the git repo
    git clone https://github.com/55gms/55GMS.git

  4. Install dependencies
    cd 55GMS && npm install

  5. Start the program using pm2
    pm2 start index.js

For Port forwarding instructions, visit your routers settings, and for SSL and Custom domains, check out Nginx Proxy Manager

Clone this wiki locally