44 lines
1.3 KiB
Markdown
44 lines
1.3 KiB
Markdown
# Web-V2
|
|
## Geting started
|
|
**Default/Graphical installer**:
|
|
Using curl
|
|
```
|
|
curl https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh
|
|
bash /tmp/installer.sh
|
|
```
|
|
|
|
Using wget
|
|
```
|
|
wget https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -O /tmp/installer.sh
|
|
bash /tmp/installer.sh
|
|
```
|
|
|
|
**Legacy Installer for developing and debugging**:
|
|
Using curl
|
|
```
|
|
curl https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -o /tmp/installer.sh
|
|
bash /tmp/installer.sh -l 2>&1 | tee ~/output.log
|
|
```
|
|
|
|
Using wget
|
|
```
|
|
wget https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/installer.sh -O /tmp/installer.sh
|
|
bash /tmp/installer.sh -l 2>&1 | tee ~/output.log
|
|
```
|
|
## Adding extra CMS/Site after instalation
|
|
```
|
|
bash <(curl --retry 7 --retry-delay 5 -s https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/AppendCMS.sh)
|
|
```
|
|
|
|
## Adding extra Module after instalation
|
|
```
|
|
bash <(curl --retry 7 --retry-delay 5 -s https://git.bprieshof.nl/Work_Archive/VPS-scripts_Web-V2/raw/branch/master/AppendModule.sh)
|
|
```
|
|
|
|
### This script uses the following repo's as dependencies:
|
|
```
|
|
* VPS-scripts/Unattended-Security-Updates
|
|
* VPS-scripts/Ubuntu-MySQL
|
|
```
|
|
|
|
----- |