All features:
- Resource Management (Use it to create servers, etc)
- Coins (AFK Page earning, Linkvertise earning, Gift them away)
- Renewal (Require coins for renewal)
- Coupons (Gives resources & coins to a user)
- Servers (create, view, edit servers)
- Payments (Buy Coins via Stripe)
- Login Queue (prevent hitting the rate-limits)
- User System (auth, regen password, etc)
- Store (buy resources with coins)
- Dashboard (view resources)
- Join for Rewards (join discord servers for coins)
- Admin (set/add/remove coins & resources, create/revoke coupons)
- API (for bots & other things)
We cannot force you to keep the "Powered by Heliactyl" in the footer, but please consider keeping it. It helps getting more visibility to the project and so getting better. We won't provide technical support for installations without the notice in the footer. We may file a DMCA takedown if the website using our Software shares false information or proclaims to be the Software Developers.
We kindly ask you to keep the footer :)
Caution: Ensure that Pterodactyl is already configured on a domain or else Heliactyl may not function properly.
Access your VPS through SSH and run these Commands:
1. sudo apt update -y && sudo apt upgrade -y
2. sudo apt install nginx
3. cd /var/www
4. # Download and unzip the latest Heliactyl release from GitHub into the current folder
5. curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs
# Customize the settings.json file, specifically updating the panel domain, API key, and Discord authentication settings.
6. node . # Start Heliactyl. Take a look at "Running in background and on startup" if you want Heliactyl to run in the background
# Ctrl + C to stop Heliactyl
7. sudo apt install certbot
8. sudo ufw allow 80
9. sudo ufw allow 443
10. sudo certbot certonly -d <Your Heliactyl Domain>
11. nano /etc/nginx/sites-enabled/heliactyl.conf
12. # Copy the Ngnix config from # Nginx Proxy Config and replace <domain> with your domain and <port> with the Port Heliactyl is running on
# (You can find the port in the settings.json)
13. sudo systemctl restart nginx
14. # Attempt to access your Heliactyl domain
# Nginx Proxy Config
server {
listen 80;
server_name <domain>;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
location /afkwspath {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass "http://localhost:<port>/afkwspath";
}
server_name <domain>;
ssl_certificate /etc/letsencrypt/live/<domain>/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/<domain>/privkey.pem;
ssl_session_cache shared:SSL:10m;
ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://localhost:<port>/;
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
}
}
Pterodactyl often changes the IDs of the EGGs so you might need to change the IDs in the settings.json to match the Pterodactyl ones
You can find the eggs for Minecraft by using YourPanelDomain.net/admin/nests/view/1
. Replace YourPanelDomain.net with the actual Domain of your Pterodactyl Installation
How to other eggs (Minecraft Bedrock):
- Download the eggs from Parkervcp's GitHub Repository
- Add the Pocketmine & Vanilla Bedrock eggs to your panel
- Get the egg ID of both of them and set it as the ID in settings.json
From Heliactyl v11/v12 or Dashactyl v0.4 to Heliactyl v13:
- Store certain information such as your api keys, discord auth settings, etc in a .txt file or somewhere safe
- Download database.sqlite (This is the Database which includes important data about the user and servers)
- Delete all files in the directory of the server (or delete and remake the folder if done in ssh)
- Upload the latest Heliactyl v13 release and unzip it
- Upload database.sqlite and reconfigure settings.json
Move to a newer Heliactyl v13 release:
- Delete everything except settings.json, database.sqlite
- Download the database.sqlite and Store important details from the settings.json such as your api keys, discord auth settings, etc in a .txt file or somewhere safe
- Upload the latest Heliactyl v13 release and unzip it
- reconfigure settings.json and upload your old database.sqlite
- All done now start Heliactyl again
Installing pm2:
- Run
npm install pm2 -g
on the vps
Starting the Dashboard in Background:
- Change directory to your Heliactyl folder Using
cd
command, Example:cd /var/www/heliactyl
- To run Heliactyl, use
pm2 start index.js --name "heliactyl"
- To view logs, run
pm2 logs Heliactyl
Making the dashboard runs on startup:
- Make sure your dashboard is running in the background with the help of pm2
- You can check if Heliactyl is running in background with
pm2 list
- Once you confirmed that Heliactyl is running in background, you can create a startup script by running
pm2 startup
andpm2 save
- Note: Supported init systems are
systemd
,upstart
,launchd
,rc.d
- To stop your Heliactyl from running in the background, use
pm2 unstartup
To stop a currently running Heliactyl instance, use pm2 stop heliactyl
Heliactyl Version v1 to - v12 have now reached their EOL (End Of Life) and should not be used in Production. Please update to Heliactyl v12 LTS or v13.