12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/bin/bash -e
|
|
SDIR=$(cd "$(dirname "$0")" ; pwd -P)
|
|
T=$SDIR/../step
|
|
|
|
STEP=0
|
|
source $T/ensureRootUser
|
|
source $T/copyNginxACMEConfig
|
|
source $T/restartNginx
|
|
|
|
source $T/copyNginxProdConfig
|
|
source $T/restartNginx
|