Practyl es un panel de control para pterodactyl con el que podas crear servidores, user servidores, etc.
git clone https://github.com/TutoMineYT/Practyl
cd Practyl
npm i
node .
npm i -g pm2
cd DIRECTORIO && pm2 start index.js --name Practyl
pm2 startup
apt update && apt upgrade
apt install nginx certbot python3-certbot-nginx
ln -s /etc/nginx/sites-available/practyl.conf /etc/nginx/sites-enabled/practyl.conf
nano /etc/nginx/sites-available/pracytl.conf
server {
listen 80;
server_name <DOMINIO>;
location / {
proxy_pass http://127.0.0.1:8080;
}
}
certbot --nginx -d <DOMINIO>
systemctl restart nginx