2024-02-23 17:23:55 +11:00
|
|
|
# Site Manager
|
|
|
|
A simple web server manager for managing multiple websites on a single server.
|
|
|
|
It is designed to be simple and easy to use, supporting HNS domains out of the box.
|
2024-02-23 14:42:15 +11:00
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
```bash
|
|
|
|
wget https://git.woodburn.au/nathanwoodburn/site-manager/raw/branch/main/install.sh
|
|
|
|
chmod +x install.sh
|
|
|
|
sudo ./install.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
Create account
|
|
|
|
--------------
|
|
|
|
Accounts can only be created by the root user
|
|
|
|
```bash
|
|
|
|
sudo -i
|
|
|
|
cd /root/site-manager
|
|
|
|
python3 account.py
|
|
|
|
exit
|
2024-02-23 17:07:34 +11:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Updating
|
|
|
|
--------
|
|
|
|
```bash
|
|
|
|
sudo -i
|
|
|
|
cd /root/site-manager
|
|
|
|
git pull
|
|
|
|
exit
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## Screenshots
|
|
|
|
![Dashboard](assets/dash.png)
|
|
|
|
![Management page](assets/mg1.png)
|
|
|
|
![Plain Content](assets/plain.png)
|
|
|
|
![Git Content](assets/git.png)
|