update documentation

This commit is contained in:
VirtuBox 2018-08-03 06:20:11 +02:00
parent 3ab5c95a1e
commit c408969858
3 changed files with 45 additions and 25 deletions

View File

@ -11,13 +11,13 @@
## Installation
### Automated install
### Automated install
```bash
bash <(wget -O - https://virtubox.github.io/easyengine-dashboard/install.sh)
```
### Manual install
### Manual install
#### Install the Following Stacks
@ -53,7 +53,7 @@ sudo sed -i 's/SEND_EMAIL="YES"/SEND_EMAIL="NO"/' /etc/netdata/health_alarm_noti
sudo service netdata restart
```
#### Nginx configurations
#### Nginx configurations
* added nginx & php-fpm status page to default vhost
* added netdata reverse-proxy configuration in 22222
@ -81,9 +81,21 @@ cd /var/www/22222/htdocs/files && unzip ex.zip && rm ex.zip
#### Install easyengine-dashboard
```bash
wget https://github.com/VirtuBox/easyengine-dashboard/archive/v1.0.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-1.0/* /var/www/22222/htdocs/
wget https://github.com/VirtuBox/easyengine-dashboard/archive/master.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip && rm easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-master/* /var/www/22222/htdocs/
sudo chown -R www-data:www-data /var/www/22222/htdocs
```
## Updating EasyEngine-Dashboard
Just perform again the last installation step
```bash
cd /var/www/22222 || exit
wget https://github.com/VirtuBox/easyengine-dashboard/archive/master.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip && rm easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-master/* /var/www/22222/htdocs/
sudo chown -R www-data:www-data /var/www/22222/htdocs
```
@ -92,12 +104,10 @@ sudo chown -R www-data:www-data /var/www/22222/htdocs
**Network interfaces meter are not displayed on the dashboard**
If you network interface isn't named eth0, you just have to use the command `ifconfig` to find its name and to replace eth0 with the proper interface name in the dashboard index.php file.
Example for a network interface named ens18 :
Example for a network interface named ens18 :
```bash
```bash
sed -i 's/eth0/ens18/' /var/www/22222/htdocs/index.php
```
```
Published & maintained by [VirtuBox](https://virtubox.net)

View File

@ -11,13 +11,13 @@
## Installation
### Automated install
### Automated install
```bash
bash <(wget -O - https://virtubox.github.io/easyengine-dashboard/install.sh)
```
### Manual install
### Manual install
#### Install the Following Stacks
@ -53,7 +53,7 @@ sudo sed -i 's/SEND_EMAIL="YES"/SEND_EMAIL="NO"/' /etc/netdata/health_alarm_noti
sudo service netdata restart
```
#### Nginx configurations
#### Nginx configurations
* added nginx & php-fpm status page to default vhost
* added netdata reverse-proxy configuration in 22222
@ -81,9 +81,21 @@ cd /var/www/22222/htdocs/files && unzip ex.zip && rm ex.zip
#### Install easyengine-dashboard
```bash
wget https://github.com/VirtuBox/easyengine-dashboard/archive/v1.0.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-1.0/* /var/www/22222/htdocs/
wget https://github.com/VirtuBox/easyengine-dashboard/archive/master.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip && rm easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-master/* /var/www/22222/htdocs/
sudo chown -R www-data:www-data /var/www/22222/htdocs
```
## Updating EasyEngine-Dashboard
Just perform again the last installation step
```bash
cd /var/www/22222 || exit
wget https://github.com/VirtuBox/easyengine-dashboard/archive/master.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip && rm easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-master/* /var/www/22222/htdocs/
sudo chown -R www-data:www-data /var/www/22222/htdocs
```
@ -92,11 +104,10 @@ sudo chown -R www-data:www-data /var/www/22222/htdocs
**Network interfaces meter are not displayed on the dashboard**
If you network interface isn't named eth0, you just have to use the command `ifconfig` to find its name and to replace eth0 with the proper interface name in the dashboard index.php file.
Example for a network interface named ens18 :
Example for a network interface named ens18 :
```bash
```bash
sed -i 's/eth0/ens18/' /var/www/22222/htdocs/index.php
```
```
Published & maintained by [VirtuBox](https://virtubox.net)

View File

@ -4,7 +4,6 @@
# Variables
##################################
EE_DASH_VER="1.0"
EXTPLORER_VER="2.1.10"
##################################
@ -103,8 +102,8 @@ fi
cd /var/www/22222 || exit
## download latest version of EasyEngine-dashboard
wget https://github.com/VirtuBox/easyengine-dashboard/archive/v$EE_DASH_VER.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-$EE_DASH_VER/* /var/www/22222/htdocs/
wget https://github.com/VirtuBox/easyengine-dashboard/archive/master.zip -O easyengine-dashboard.zip
unzip easyengine-dashboard.zip && rm easyengine-dashboard.zip
sudo cp -rf easyengine-dashboard-master/* /var/www/22222/htdocs/
sudo chown -R www-data:www-data /var/www/22222/htdocs