hostinger-platform

Deploy and operate applications on Hostinger shared hosting and VPS with PM2, MySQL, and SSL.

Updated Jun 28, 2026
One-click install
npx skills add https://github.com/JaviMontano/claude-plugins --skill hostinger-platform-javimontano
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: hostinger-platform
Source: https://github.com/JaviMontano/claude-plugins/tree/main/plugins/claude-native-toolkit/skills/hostinger-platform
Command: npx skills add https://github.com/JaviMontano/claude-plugins --skill hostinger-platform-javimontano

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and assets (resource) components.

What problem does it solve? Deploying and operating applications on Hostinger requires choosing between shared and VPS tiers, configuring Git/SFTP/PM2 deployment, provisioning MySQL/MariaDB databases, and managing SSL, DNS, and email through hPanel — all while respecting the tight connection and process caps of budget hosting plans. ## Core Features & Use Cases - Tier selection and deployment: Choose shared hosting for PHP/static sites or VPS for Node daemons, then deploy via Git or SFTP with PM2 process supervision and restart-on-boot. - Database, SSL, and DNS provisioning: Create least-privilege MySQL/MariaDB users in hPanel, force HTTPS with auto-renewing certificates, and manage DNS zone records with propagation-aware cutovers. - Use Case: Deploy a Node application with MySQL to a Hostinger VPS — the skill routes to the deployment playbook, sets up PM2 with a startup hook, configures a pooled least-privilege database user, automates certificate renewal, and plans the DNS cutover. ## Quick Start Deploy my Node app to a Hostinger VPS with PM2, a MySQL database, HTTPS, and a DNS cutover plan.

Frequently Asked Questions about hostinger-platform

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Node.js app to a Hostinger VPS with PM2?▼

Install Node via nvm on the VPS, configure an ecosystem.config.js, then run pm2 start, pm2 save, and pm2 startup so the process survives reboots. Bind the app to 127.0.0.1 and front it with a reverse proxy plus Let's Encrypt rather than exposing the Node port publicly.

Should I use Hostinger shared hosting or a VPS for my application?▼

Use shared hosting for low-traffic PHP or static sites that fit within its process and connection caps. Choose a VPS for Node.js daemons or any long-running process, since shared plans provide no persistent processes and will kill or limit them.

Can I run a persistent Node worker on Hostinger shared hosting?▼

No. Hostinger shared plans do not support persistent processes, so a long-running Node worker will be killed or limited. Move the daemon to a Hostinger VPS under PM2, or route serverless/edge workloads to Vercel or Firebase instead.

How do I set up MySQL and SSL on Hostinger hPanel?▼

Create the database and a least-privilege user in hPanel, connect via localhost, and pool or close connections promptly because shared-plan caps are low. SSL is auto-provisioned and auto-renewed for hosted domains; on a VPS, automate certbot renewal with a cron job and force HTTPS.

When should I use Vercel or Firebase instead of Hostinger?▼

Use Vercel or Firebase when the workload needs serverless functions, edge distribution, or automatic scale-to-zero. Hostinger fits traditional shared or VPS hosting where you trade manual operations for minimal cost and full server control.