Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mythicalltd/mythicalwebpanel
The best free web hosting panel with a powerful API
https://github.com/mythicalltd/mythicalwebpanel
api atoro client dashboard mythicalsystems php
Last synced: 3 months ago
JSON representation
The best free web hosting panel with a powerful API
- Host: GitHub
- URL: https://github.com/mythicalltd/mythicalwebpanel
- Owner: MythicalLTD
- License: mit
- Created: 2023-04-06T21:06:55.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-23T18:29:19.000Z (over 1 year ago)
- Last Synced: 2023-07-23T19:24:36.204Z (over 1 year ago)
- Topics: api, atoro, client, dashboard, mythicalsystems, php
- Language: PHP
- Homepage: https://mythicalsystems.tech
- Size: 68.6 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![Logo](https://camo.githubusercontent.com/4cf45904e67161611071520974b92a39ef49544ad2c03c027a4e07bf7f44d871/68747470733a2f2f692e696d6775722e636f6d2f784933474c46632e6a706567)
# MythicalWebPanel
The best free web hosting panel with multi-node support and a powerful API
MythicalWebPanel is currently in development by [@SnyderWillCode](https://github.com/SnyderWillCode) & [@NaysKutzu](https://github.com/nayskutzu).### 🎨 Frontend
We are using vuexy as a frontend. You can change that!### 👔 Contributing
I'm open to all contributions! Feel free to help! :)### 💸 Financial support
Do you want to support our hard work?MythicalSystems
https://paypal.me/mythicalsystems### 🎧 Support
You can join our support server:
https://discord.gg/7BZTmSK2D8
## DOCS
Here you will find the stuff that we will have to add in our docs:### Create a new user:
Use the following command to create a new user.
```bash
sudo adduser mythicalsystems
```
### Add the user to the sudo group:
The sudo group allows users to run commands with administrative privileges.
```bash
sudo usermod -aG sudo mythicalsystems
```
### Edit the sudoers file:
The sudoers file is the configuration file for controlling sudo privileges. We'll use the `visudo` command to safely edit it:### Allow passwordless sudo for the new user:
Inside the sudoers file, add the following line at the end of the file:
```bash
mythicalsystems ALL=(ALL) NOPASSWD: ALL
```