vps_initialize
Set up a new VPS with basic configuration and optional services like Node.js, Nginx, and Redis. Automates installation and management for streamlined server deployment.
Instructions
Initialize a fresh VPS with basic setup and optional services
Input Schema
Name | Required | Description | Default |
---|---|---|---|
services | No |
Input Schema (JSON Schema)
{
"properties": {
"services": {
"properties": {
"nginx": {
"description": "Install Nginx",
"type": "boolean"
},
"nodejs": {
"description": "Install Node.js",
"type": "boolean"
},
"pm2": {
"description": "Install PM2",
"type": "boolean"
},
"redis": {
"description": "Install Redis",
"type": "boolean"
},
"rust": {
"description": "Install Rust",
"type": "boolean"
}
},
"type": "object"
}
},
"required": [],
"type": "object"
}