❗ PalPod go been combined with fixed-palladium, i work on this version isn't release but soon |
---|
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 (Discord)
- Store (buy resources with coins)
- Dashboard (view resources & servers)
- Admin (set, add, remove coins/scan images & nodes)
❗ This is an extremely early version of PalPod and doesn't have all of features we want to add yet |
---|
:Warning: You need Skyport already set up on a domain for PalPod to work
- Upload the file above onto a Skyport NodeJS server Download the egg from pelican-eggs Repository
- Unarchive the file and set the server to use NodeJS 16
- Configure
.env
,/storage/eggs.json
&/storage/plans.json
with the scan or manuel and ports/storage/ports.json
- Run
npm i
- Start the server with
node index.js
- 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 certbot
on the vps - Run
ufw allow 80
andufw allow 443
on the vps - Run
certbot certonly -d <Your domain>
then do 1 and put your email - Run
nano /etc/nginx/sites-enabled/palpod.conf
- Paste the configuration at the bottom of this and replace with the IP of the Skyport server including the port and with the domain you want your dashboard to be hosted on.
- Run
systemctl restart nginx
and try open your domain.
server {
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
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;
if ($scheme != "https") {
return 301 https://$host$request_uri;
}
location /afkwspath {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://localhost:<port>/afkwspath;
}
location / {
proxy_pass http://localhost:<port>/;
proxy_buffering off;
proxy_set_header X-Real-IP $remote_addr;
}
}
- We recommend using cloudflare and cloudflare proxy to avoid websocket vulnerabilities.