Compare commits

..

No commits in common. "e6f4f9346a09c325cb9728306a80f8b8a2bf2315" and "20075ec132803e88ecd3f311695db2ec40ab01be" have entirely different histories.

4 changed files with 9 additions and 71 deletions

View File

@ -5,27 +5,16 @@ export remote_url=''
export username=''
export webuser=''
export db_root_user=''
export db_root_pass=''
export wp_db_name=''
export wp_db_user=''
export wp_db_pass=''
export wp_path=''
export wp_user=''
export wp_pass=''
export php_version=''
# if version not set, latest is used
# set one of
export mariadb_version=''
export mysql_version=''
# set one of
export php_version=''
export apache2_version=''
export nginx_version=''
export litespeed_version=''
#set if using litespeed
# https://openlitespeed.org/kb/1-click-install/
# password used to log into litespeed web interface)
export ls_webadmin_pass=''
export ls_lsphp_version=''
export lightspeed_version=''

3
server-add-web.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh

View File

@ -1,13 +1,7 @@
#!/bin/sh
apt upgrade -y || exit 10
apt install -y tmux ufw curl || exit 15
sed -i '/PubkeyAuthentication/c\PubkeyAuthentication yes' /etc/ssh/sshd_config
sed -i '/PasswordAuthentication/c\PasswordAuthentication no' /etc/ssh/sshd_config
sed -i '/PermitRootLogin/c\PermitRootLogin prohibit-password' /etc/ssh/sshd_config
systemctl restart sshd
apt upgrade || exit 10
apt install -y tmux ufw || exit 15
ufw allow ssh || exit 20
yes | ufw enable

View File

@ -1,48 +0,0 @@
#!/bin/sh
success="0"
if [ -n "$apache2_version" ] ; then
echo "TODO install apache"
exit 1
elif [ -n "$nginx_version" ] ; then
echo "TODO install nginx"
exit 1
elif [ -n "$lightspeed_version" ] ; then
if [ "$lightspeed_version" != 'latest' ] ; then
echo "TODO install specific litespeed version"
echo ""
echo "Specify \"Lightspeed_version='latest'\" to install current version."
exit 1
fi
if [ -n "$wp_user" ] ; then
wget --no-check-certificate https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh && bash ols1clk.sh \
--adminpassword "$ls_webadmin_pass" \
--lsphp "$ls_lsphp_version" \
--wordpressplus "$local_url" \
--wordpresspath "$wp_path" \
--dbrootpassword "$db_root_pass" \
--dbpassword "$wp_db_pass" \
--dbname "$wp_db_name" \
--dbuser "$wp_db_user" \
--wpuser "$wp_user" \
--wppassword "$wp_pass" \
&& success="1" \
&& ufw allow 7080
else
echo "TODO install lightspeed without WordPress"
exit 1
fi
else
echo "$0: Error - no webserver specified in configuration"
exit 5
fi
if [ "$success" -eq 1 ] ; then
ufw allow http \
&& ufw allow https
fi