AustoBill is a self-hosted billing panel for game hosting services built on Pterodactyl. It provides automatic server creation, multiple payment gateways, and full Proxmox VPS support.
- YooMoney — Russian e-wallet and card payments
- Platega.io — Payment aggregation service
- 2328.io — Cryptocurrency payments
- Cash / manual — Discord-based manual confirmation
- Pterodactyl — Game servers (Minecraft, Rust, etc.)
- Proxmox VE — VDS/VPS virtual machines
| Feature | Description |
|---|---|
| Discord OAuth2 Login | Authenticate via Discord |
| Automatic provisioning | Server created instantly after payment |
| Admin dashboard | Manage users, servers, tariffs, payments |
| Multi-currency | RUB, USD, crypto |
| SMTP email | Notifications, invoices, password reset |
| Proxmox integration | Create/manage VMs with a single click |
| Platega / YooMoney / Crypto | Three payment gateways out of the box |
| Encrypted passwords | AES encryption for Pterodactyl credentials |
- OS: Ubuntu 20.04 / 22.04 / 24.04 (Debian 11+ also works)
- RAM: 1 GB minimum
- CPU: 1 core
- Disk: 10 GB
- Domain: A domain pointing to your server (for SSL)
- Node.js: 20.x LTS (installed automatically)
sudo bash -c "$(curl -sSL https://raw.githubusercontent.com/Ultener/AustoBill/main/install.sh)"Or clone and run manually:
git clone https://github.com/Ultener/AustoBill.git
cd luminarix-bill
sudo bash install.shThe installer will:
- Ask for your preferred language (English / Русский)
- Present an interactive menu — choose 1. Install AustoBill
- Walk through a configuration wizard (domain, Pterodactyl, Discord, SMTP, payments)
- Install all dependencies and build the frontend
- Start the panel at
http://YOUR_SERVER_IP
Re-run the installer anytime:
sudo bash install.sh╔════════════════════════════════════════╗
║ 1. Install AustoBill ║
║ 2. Update AustoBill ║
║ 3. Uninstall AustoBill ║
║ ────────────────────────── ║
║ 4. Setup SSL (Let's Encrypt) ║
║ 5. Create Backup ║
║ 6. Restart Service ║
║ ────────────────────────── ║
║ 7. Show Status ║
║ 8. Show Logs ║
║ 9. Settings (.env editor) ║
║ ────────────────────────── ║
║ 0. Exit ║
╚════════════════════════════════════════╝
systemctl status austobill # Check service status
systemctl restart austobill # Restart the panel
journalctl -u austobill -f # Watch real-time logs
journalctl -u austobill -n 100 # Last 100 log lines
cd /opt/austobill && npm run build # Rebuild frontendIf you prefer to set things up by hand:
git clone https://github.com/Ultener/AustoBill.git /opt/austobill
cd /opt/austobillcp .env.example .env
nano .envnpm install
npm run buildcp deploy/austobill.service /etc/systemd/system/
systemctl daemon-reload
systemctl enable --now austobillcp deploy/nginx.conf /etc/nginx/sites-available/austobill
ln -s /etc/nginx/sites-available/austobill /etc/nginx/sites-enabled/
rm -f /etc/nginx/sites-enabled/default
nginx -t && systemctl restart nginxcertbot --nginx -d bill.example.comThe .env file is created automatically by the installer. Key variables:
| Variable | Description |
|---|---|
PORT |
HTTP port (default: 3000) |
FRONTEND_URL |
Public domain (e.g. https://bill.example.com) |
DISCORD_CLIENT_ID |
Discord OAuth2 application ID |
DISCORD_CLIENT_SECRET |
Discord OAuth2 application secret |
SMTP_HOST |
SMTP server for email |
SMTP_PORT |
SMTP port (default: 587) |
SMTP_USER |
SMTP login |
SMTP_PASS |
SMTP password |
PTERO_URL |
Pterodactyl panel URL |
PTERO_ADMIN_KEY |
Pterodactyl Admin API key (ptla_...) |
PROXMOX_HOST |
Proxmox host URL |
PROXMOX_TOKEN_ID |
Proxmox API token ID |
PROXMOX_TOKEN_SECRET |
Proxmox API token secret |
YOOMONEY_WALLET |
YooMoney wallet number |
YOOMONEY_SECRET |
YooMoney notification secret |
PLATEGA_MERCHANT_ID |
Platega merchant ID |
PLATEGA_SECRET_KEY |
Platega secret key |
ENCRYPTION_KEY |
Key for password encryption (auto-generated) |
ADMIN_EMAIL |
Initial admin account email |
ADMIN_PASSWORD |
Initial admin account password |
Use the Settings menu (sudo bash install.sh → option 9) to edit any of these interactively.
sudo bash install.sh
# Choose option 2. Update AustoBillThe update process:
- Creates a full backup of
/opt/austobill - Pulls the latest code from GitHub
- Preserves your
.envand database - Rebuilds the frontend
- Restarts the service
sudo bash install.sh
# Choose option 3. Uninstall AustoBillThis removes:
- All files in
/opt/austobill - SQLite database
- Nginx site configuration
- Systemd service
/opt/austobill/
├── server.js # Main server entry
├── .env # Environment configuration
├── install.sh # Interactive installer & manager
├── deploy/
│ ├── luminarix.service # Systemd unit file
│ └── nginx.conf # Nginx reverse proxy config
├── src/
│ └── ... # Application source
├── dist/ # Built frontend (generated)
└── icon/
└── logo.png # Panel logo
MIT License. See LICENSE for details.
- Website: https://austocloud.fun
- Documentation: https://docs.austocloud.fun
- GitHub: https://github.com/Ultener/AustoBill