Templates
Save and reuse command sequences across your servers.
What are templates?
Templates are saved command sequences that you can run on any server with one click. They help maintain consistency across your infrastructure and speed up common operations.
Creating a template
- Go to Dashboard → Templates
- Click New Template
- Give it a name and description
- Add the commands to execute (one per line)
- Set the safety level
- Save
Example templates
LEMP Stack Setup
apt update
apt install -y nginx mysql-server php-fpm php-mysql
systemctl enable nginx mysql php8.1-fpm
systemctl start nginx mysql php8.1-fpmSecurity Hardening
apt update && apt upgrade -y
ufw default deny incoming
ufw default allow outgoing
ufw allow ssh
ufw allow 'Nginx Full'
ufw --force enable
sed -i 's/PermitRootLogin yes/PermitRootLogin no/' /etc/ssh/sshd_config
systemctl restart sshdDocker Cleanup
docker system prune -f
docker volume prune -f
docker image prune -a -fRunning a template
- Select a server from your server list
- Go to Templates and find your template
- Click Run on Server
- Review the commands and confirm
- Watch live output as commands execute sequentially
Template sharing
On Pro and Business plans, templates can be shared with team members. Shared templates are visible to everyone in your organization.