Join Our Discord Community!

Click the button below to join our new Discord community.

Join Discord
WordPress

WordPress

The world's most popular CMS for creating professional websites, blogs, and online stores. Easy to use with thousands of themes and plugins available.

Version latest CMS 3 minutos 1-Click Install
Deploy Now

Getting started

  1. Go to https://my.cubepath.com/deploy
  2. Select a VPS plan
  3. Under Operating System, choose "WordPress"
  4. Click Deploy

Once the deployment is complete (~5 minutes), access http://your-server-ip and complete the WordPress installation wizard.

Deploy via CubePath Cloud API

Via CubeCLI

pipx install git+https://github.com/CubePathInc/cubecli.git

cubecli vps create \
  --name wordpress-site \
  --plan gp.micro \
  --template "WordPress" \
  --location us-mia-1 \
  --project <project-id>

Via API

curl -X POST https://api.cubepath.com/v1/vps \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "wordpress-site",
    "plan": "gp.micro",
    "template": "wordpress",
    "location": "us-mia-1"
  }'

Technical information

Access credentials:
- URL: http://YOUR-IP
- Username: Set during web installation
- Password: Set during web installation

Installed software:
- Docker + WordPress (latest)
- MariaDB 11.7.2

Locations:
- Installation: /opt/wordpress/
- Files: /opt/wordpress/html/
- Database: /opt/wordpress/db/

Ports:
- 22 (SSH)
- 80 (HTTP)

Useful commands

# Check status
docker ps

# View logs
docker logs wordpress
docker logs wordpress-db

# Restart
docker restart wordpress