Update README.md

This commit is contained in:
FusionPBX
2019-08-03 19:04:45 -06:00
committed by GitHub
parent 54396d3fe9
commit c4f7daf740
+19 -12
View File
@@ -32,23 +32,30 @@ How to Install FusionPBX
---------------------------- ----------------------------
* As root do the following: * As root do the following:
```bash Debian Install
apt-get update && apt-get upgrade && apt-get install -y git
``` ```
```bash wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/debian/pre-install.sh | sh;
cd /usr/src cd /usr/src/fusionpbx-install.sh/debian && ./install.sh
``` ```
```bash
git clone https://github.com/fusionpbx/fusionpbx-install.sh.git Ubuntu Install
``` ```
```bash wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/ubuntu/pre-install.sh | sh;
chmod 755 -R /usr/src/fusionpbx-install.sh cd /usr/src/fusionpbx-install.sh/ubuntu && ./install.sh
``` ```
```bash
cd /usr/src/fusionpbx-install.sh/debian FreeBSD Install
``` ```
```bash pkg install --yes git
./install.sh cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git
cd /usr/src/fusionpbx-install.sh/freebsd && ./install.sh
```
CentOS Install
```
yum install wget
wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/centos/pre-install.sh | sh
cd /usr/src/fusionpbx-install.sh/centos && ./install.sh
``` ```
This install script is designed to be an fast, simple, and in a modular way to install FusionPBX. Start with a minimal install of Debian 9 with SSH enabled. Run the following commands under root. The script installs FusionPBX, FreeSWITCH release package and its dependencies, IPTables, Fail2ban, NGINX, PHP FPM and PostgreSQL. This install script is designed to be an fast, simple, and in a modular way to install FusionPBX. Start with a minimal install of Debian 9 with SSH enabled. Run the following commands under root. The script installs FusionPBX, FreeSWITCH release package and its dependencies, IPTables, Fail2ban, NGINX, PHP FPM and PostgreSQL.