dev-scripts/server-install-apache.sh

18 lines
211 B
Bash
Executable File

#!/bin/sh
if [ -z "$1" ] ; then
echo "error: must specify configuration file to use"
exit 5
fi
. ./"$1"
ssh -T $src_ssh << EOSSH
ufw allow http && ufw allow https
echo "TODO install apache"
exit 1
EOSSH