├── .github └── ISSUE_TEMPLATE │ ├── 1_Bug_report.yaml │ └── config.yml ├── .gitignore ├── README.md └── assets └── images ├── cloudpanel.png └── cloudpanel.svg /.github/ISSUE_TEMPLATE/1_Bug_report.yaml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | description: ⚠️ NEVER report security issues! Send us an email to security[at]cloudpanel.io 3 | labels: Bug 4 | 5 | body: 6 | - type: input 7 | id: affected-versions 8 | attributes: 9 | label: CloudPanel version(s) affected 10 | placeholder: x.y.z 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: description 15 | attributes: 16 | label: Description 17 | description: A clear and concise description of the problem 18 | validations: 19 | required: true 20 | - type: textarea 21 | id: how-to-reproduce 22 | attributes: 23 | label: How to reproduce 24 | description: | 25 | ⚠️ This is the most important part of the report ⚠️ 26 | Without a way to easily reproduce your issue, there is little chance we will be able to help you and work on a fix. 27 | Please, take the time to show us some code and/or config that is needed for others to reproduce the problem easily. 28 | validations: 29 | required: true 30 | - type: textarea 31 | id: possible-solution 32 | attributes: 33 | label: Possible Solution 34 | description: | 35 | Optional: only if you have suggestions on a fix/reason for the bug 36 | - type: textarea 37 | id: additional-context 38 | attributes: 39 | label: Additional Context 40 | description: "Optional: any other context about the problem: log messages, screenshots, etc." 41 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: 🚀 Feature Request 4 | url: https://feature-requests.cloudpanel.io/ 5 | about: We would love to hear what you are thinking about. What can we do better? This is the place for you to vote, discuss and share ideas. 6 | - name: 💬 Support Question 7 | url: https://discord.cloudpanel.io 8 | about: We use GitHub issues only to discuss about CloudPanel bugs. 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 | 4 | 5 |

6 | 7 | [CloudPanel](https://www.cloudpanel.io) is a free and modern server control panel to configure and manage a server with an obsessive focus on simplicity. 8 | 9 | Run **PHP**, **Node.js**, **Static Websites**, **Reverse Proxies** and **Python Applications** in no time on a **High-Performance Technology Stack**. 10 | 11 |

12 | 13 | 14 | 15 |

16 | 17 | ## :boom: Highlights 18 | 19 | - **Free** 20 | - **Easy to use** 21 | - **Community Driven** 22 | - **Blazing Fast Page Loads - Up to 250x faster** 23 | - **Secure (free SSL/TLS certificates)** 24 | - **Cloudflare integration** 25 | - **High Performance** 26 | - **Ready to go within 1 minute** 27 | - **Supports all major clouds** 28 | - **Ubuntu 24.04 and 22.04, Debian 12 and 11 Support** 29 | - **Support for X86 and ARM** 30 | 31 | ## :floppy_disk: Installation 32 | 33 | - [Amazon Web Services](https://www.cloudpanel.io/docs/v2/getting-started/amazon-web-services/installation/ami/) 34 | - [Digital Ocean](https://www.cloudpanel.io/docs/v2/getting-started/digital-ocean/installation/marketplace/) 35 | - [Hetzner Cloud](https://www.cloudpanel.io/docs/v2/getting-started/hetzner-cloud/installation/installer/) 36 | - [Google Compute Engine](https://www.cloudpanel.io/docs/v2/getting-started/google-compute-engine/installation/installer/) 37 | - [Microsoft Azure](https://www.cloudpanel.io/docs/v2/getting-started/microsoft-azure/installation/installer/) 38 | - [Oracle Cloud](https://www.cloudpanel.io/docs/v2/getting-started/oracle-cloud/installation/installer/) 39 | - [Vultr](https://www.cloudpanel.io/docs/v2/getting-started/vultr/installation/marketplace/) 40 | - [Other](https://www.cloudpanel.io/docs/v2/getting-started/other/) 41 | 42 | ## Discord 43 | 44 | Discord 45 | 46 | ## :sparkling_heart: Support This Project 47 | 48 | * Please star the project 49 | * Write about **CloudPanel** on platforms like **Twitter**, **Facebook** or **LinkedIn** 50 | * Follow us on [Twitter](https://twitter.com/cloudpanel_io) and retweet our tweets 51 | * Write a **Blog** post about **CloudPanel** 52 | * Give us [Feedback](https://www.cloudpanel.io/feedback/) to improve **CloudPanel** 53 | * Report [Bugs](https://github.com/cloudpanel-io/cloudpanel-ce/issues) on Github 54 | * Join our [Discord Server](https://discord.cloudpanel.io/) 55 | * [Get in touch with us](https://www.cloudpanel.io/contact/) if you have other ideas -------------------------------------------------------------------------------- /assets/images/cloudpanel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudpanel-io/cloudpanel-ce/4578c74711bc8874e14caa5615169e6e4cd0ceae/assets/images/cloudpanel.png --------------------------------------------------------------------------------