| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Complete collection of automated installation and management scripts for PUQcloud - a modular cloud automation and billing system.
This repository contains production-ready scripts for deploying PUQcloud infrastructure on various Linux distributions. Each script is designed for reliability, security, and ease of use in enterprise environments.
PUQcloud-Scripts/ ├── README.md # This file - main navigation ├── Debian_Ubuntu/ # Debian/Ubuntu scripts (Primary) │ ├── install.sh # 🚀 Main PUQcloud installation │ ├── phpmyadmin.sh # 🗄️ phpMyAdmin installation │ ├── delete_and_clear_databases.sh # 🧹 Database cleanup utility │ ├── install_config.txt # ⚙️ Configuration storage │ └── docs/ # 📖 Complete documentation │ ├── README.md # Quick start guide │ ├── install-guide.md # Detailed installation guide │ ├── phpmyadmin-guide.md # phpMyAdmin setup guide │ ├── database-cleanup-guide.md # Database cleanup guide │ ├── troubleshooting.md # Problem resolution guide │ └── examples.md # Usage examples & scenarios ├── HestiaCP/ # HestiaCP control panel integration │ ├── install_hestiacp_admin.sh # 🎛️ HestiaCP + PUQcloud installation │ ├── install_config_admin.txt # ⚙️ HestiaCP configuration storage │ └── docs/ # 📖 HestiaCP documentation │ ├── README.md # HestiaCP setup guide │ └── README_ADMIN_SCRIPT.md # Detailed admin guide └── [Future additions] # Docker and more (planned)
# Clone the repository
git clone https://github.com/puqcloud/PUQcloud-Scripts.git
cd PUQcloud-Scripts
# Navigate to your distribution
cd "Debian_Ubuntu"
# Make scripts executable
chmod +x *.sh# Basic installation
sudo ./install.sh your-domain.com admin@domain.com password123 "Admin Name"
# Or interactive mode
sudo ./install.shsudo ./phpmyadmin.sh# Navigate to HestiaCP directory
cd "HestiaCP"
# Make scripts executable
chmod +x *.sh# Combined HestiaCP and PUQcloud installation
sudo ./install_hestiacp_admin.sh| Platform | Version | Status | Stability |
|---|---|---|---|
| Ubuntu/Debian | v1.0 | ✅ Active | 🟢 Production Ready |
| HestiaCP | v1.0 | ✅ Active | 🟢 Production Ready |
| Docker | - | ⏳ Planned | 🟡 In Development |
# Enterprise-grade installation with monitoring
sudo ./install.sh production.company.com admin@company.com SecurePass123 "System Admin"
sudo ./phpmyadmin.sh# Quick development setup
sudo ./install.sh dev.local dev@localhost.local dev123 "Developer"# Update existing installation
sudo ./install.sh
# Choose "update" when prompted# Full system cleanup and reinstall
sudo ./delete_and_clear_databases.sh
sudo ./install.sh fresh.domain.com admin@domain.com NewPass123 "Fresh Admin"# Install HestiaCP with PUQcloud integration
sudo ./install_hestiacp_admin.shWe welcome contributions! Here's how you can help:
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Special thanks to:
| Back | FazBrowse Home | New Git URL |