Palladium
A powerful & fast open-source Pterodactyl client area.
Install / Use
/learn @PinePlatforms/PalladiumREADME

Palladium
All features:
- Resource Management (Use it to create servers, gift them, etc)
- Coins (AFK Page earning)
- Servers (create, view, edit servers)
- User System (auth, regen password, etc)
- OAuth2 (Google, Discord, etc)
- Store (buy resources with coins)
- Dashboard (view resources & servers)
- Admin (set/add/remove coins)
| :exclamation: This is an extremely early version of Palladium and doesn't have all of features we want to add yet | |------------------------------------------------------------------------------------------------------------------------------------------------------|
<br>| :warning: Palladium currently doesn't encrypt user passwords. This will be fixed in 1.0.1, but for now, just don't leak your database.sqlite. | |------------------------------------------------------------------------------------------------------------------------------------------------------|
<hr>Install Guide
Warning: You need Pterodactyl already set up on a domain for Palladium to work
- Upload the file above onto a Pterodactyl NodeJS server Download the egg from Parkervcp's GitHub Repository
- Unarchive the file and set the server to use NodeJS 16
- Configure
.env,/resources/configuration/locations.ejsand/storage/eggs.json - Start the server
- Login to your DNS manager, point the domain you want your dashboard to be hosted on to your VPS IP address. (Example: dashboard.domain.com 192.168.0.1)
- Run
apt install nginx && apt install certboton the vps - Run
ufw allow 80andufw allow 443on the vps - Run
certbot certonly -d <Your Palladium Domain>then do 1 and put your email - Run
nano /etc/nginx/sites-enabled/palladium.conf - Paste the configuration at the bottom of this and replace with the IP of the pterodactyl server including the port and with the domain you want your dashboard to be hosted on.
- Run
systemctl restart nginxand try open your 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;
}
}
Related Skills
node-connect
339.3kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
83.9kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
339.3kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
83.9kCommit, push, and open a PR
