dev-scripts/server-install-apache.sh

18 lines
211 B
Bash
Raw Normal View History

2020-06-25 10:27:14 +00:00
#!/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