Documentation Index
Fetch the complete documentation index at: https://docs.breezehost.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Getting Started with VPS
This guide walks you through ordering a VPS at Breeze Hosting, selecting your operating system, and performing critical security configuration.Ordering Your VPS
Follow these steps to order your first VPS through our dashboard.Visit the Billing Panel
Navigate to dash.breezehost.xyz and log in with your Breeze account credentials. If you don’t have an account, create one by clicking “Register”.
Browse VPS Plans
Click on “Services” or “Products” in the main menu and select “VPS Hosting”. You’ll see our available VPS plans with different CPU, RAM, and storage configurations.
Choose Your Plan
Select a plan that matches your needs. Plans vary by CPU, RAM, and storage — browse the available options on the site.
Select Your Operating System
Choose your preferred Linux distribution from the available options during checkout.
Configure Additional Options
Review and configure:
- Hostname: Set your server’s hostname
- Additional IPs: Optional extra IP addresses
- Backup Service: Add automated backups if available
Review and Checkout
Review your order summary, select your billing cycle (monthly, quarterly, annual), and proceed to checkout. Complete payment using your preferred method.
After Your VPS is Deployed
Once you receive your server credentials, you’ll have:- Server IP Address: Used to connect and configure DNS
- Root Username: Usually “root”
- Root Password: Your initial login password (change this immediately)
- SSH Port: Usually 22 (standard SSH port)
Your First SSH Login
On Linux/Mac
Open your terminal and connect:On Windows
Use a terminal application like:- Windows Terminal (built-in)
- PuTTY (free SSH client)
- WSL 2 (Windows Subsystem for Linux)
Critical Security: Change Your Root Password
Your first action should be to change the root password from the temporary one provided.Enter New Password
Create a strong, unique password (15+ characters, mix of upper/lowercase, numbers, symbols)
Basic Security Hardening
After changing your password, implement these essential security measures.1. Update Your System
yum or dnf for CentOS/AlmaLinux/Rocky)
2. Configure Firewall (UFW)
UFW (Uncomplicated Firewall) is built into Ubuntu/Debian.3. Set Up SSH Key Authentication
Using SSH keys is more secure than passwords. Generate a key pair on your local machine: On Linux/Mac:~/.ssh/id_ed25519 (private) and ~/.ssh/id_ed25519.pub (public).
Copy your public key to the server:
~/.ssh/authorized_keys on the server.
4. Disable Root Password Login (Optional but Recommended)
Once SSH keys are working, you can disable password-based root login:5. Create a Regular (Non-Root) User
Running everything as root is risky. Create a regular user:sudo group allows administrative commands with sudo.
Next Steps
Congratulations! Your VPS is now secure and ready for applications.Managing Your VPS
Learn to start, stop, restart, and reinstall your VPS through the dashboard.
Networking Guide
Configure DNS, firewalls, and reverse proxies for your applications.
Proxmox Details
Understand the virtualization technology powering your VPS.
Keep your server updated with regular
apt update && apt upgrade runs. Security patches are critical for maintaining a secure system.
