Updates in install scripts
This commit is contained in:
parent
c18f6f8e24
commit
0c2e7e0cc3
3 changed files with 10 additions and 6 deletions
|
@ -72,12 +72,12 @@ Thus, by running this script below, you agree with the Let's Encrypt's Terms of
|
||||||
|
|
||||||
For Centos 7 type:
|
For Centos 7 type:
|
||||||
```
|
```
|
||||||
sh setup/install-centos7-https.sh mailtrain.example.com sbox.mailtrain.example.com lists.example.com admin@example.com
|
bash setup/install-centos7-https.sh mailtrain.example.com sbox.mailtrain.example.com lists.example.com admin@example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
For Ubuntu 18.04 LTS type:
|
For Ubuntu 18.04 LTS type:
|
||||||
```
|
```
|
||||||
sh setup/install-ubuntu1804-https.sh mailtrain.example.com sbox.mailtrain.example.com lists.example.com admin@example.com
|
bash setup/install-ubuntu1804-https.sh mailtrain.example.com sbox.mailtrain.example.com lists.example.com admin@example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Start Mailtrain and enable to be started by default when your server starts.
|
5. Start Mailtrain and enable to be started by default when your server starts.
|
||||||
|
@ -128,12 +128,12 @@ All endpoints (trusted, sandbox, public) will provide only HTTP as follows:
|
||||||
|
|
||||||
For Centos 7 type:
|
For Centos 7 type:
|
||||||
```
|
```
|
||||||
sh setup/install-centos7-local.sh
|
bash setup/install-centos7-local.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
For Ubuntu 18.04 LTS type:
|
For Ubuntu 18.04 LTS type:
|
||||||
```
|
```
|
||||||
sh setup/install-ubuntu1804-local.sh
|
bash setup/install-ubuntu1804-local.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Start Mailtrain and enable to be started by default when your server starts.
|
5. Start Mailtrain and enable to be started by default when your server starts.
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
hostType=centos7
|
||||||
|
|
||||||
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
||||||
. $SCRIPT_PATH/functions centos7
|
. $SCRIPT_PATH/functions
|
||||||
cd $SCRIPT_PATH/..
|
cd $SCRIPT_PATH/..
|
||||||
|
|
||||||
performInstallHttps "$#" "$1" "$2" "$3" "$4"
|
performInstallHttps "$#" "$1" "$2" "$3" "$4"
|
|
@ -2,8 +2,10 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
hostType=centos7
|
||||||
|
|
||||||
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
SCRIPT_PATH=$(dirname $(realpath -s $0))
|
||||||
. $SCRIPT_PATH/functions centos7
|
. $SCRIPT_PATH/functions
|
||||||
cd $SCRIPT_PATH/..
|
cd $SCRIPT_PATH/..
|
||||||
|
|
||||||
performInstallLocal "$#"
|
performInstallLocal "$#"
|
Loading…
Reference in a new issue