vhost-stack/bin/vhost-deploy.sh

125 lines
4.6 KiB
Bash
Raw Normal View History

2021-04-04 13:28:22 -07:00
#!/bin/bash
#
# vhost-stack
# https://git.stack-source.com/msb/vhost-stack
2022-08-22 13:22:16 -07:00
# Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
2021-04-04 13:28:22 -07:00
2021-04-04 14:15:16 -07:00
# load include file
source $(dirname $0)/vhost.sh
2021-04-04 13:28:22 -07:00
2021-09-16 16:21:35 -07:00
help()
{
thisfilename=$(basename -- "$0")
echo "Add virtualhost to this server, including shell user and MySQL database."
echo ""
2023-05-04 17:15:27 -07:00
echo "usage: $thisfilename -d <domain> [-u <username>] [-p <password>] [-x <fpmmax>] [-j <0|1>] [-w <0|1>] [-h]"
2021-09-16 16:21:35 -07:00
echo ""
echo " -h Print this help."
2021-10-05 11:33:24 -07:00
echo " -d <domain> Domain name of VirtualHost to remove."
echo " -u <username> Username to use for this virtualhost. Optional, defaults to first 8 alphanumeric characters of virtualhost."
echo " -p <password> Password for username. Optional, random password generated if none specified."
echo " -x <fpmmax> PHP-FPM pm.max_children. Optional, defaults to 4, recommended range 2-12 on Shared Server."
2023-05-04 17:15:27 -07:00
echo " -j <0|1> Whether or not to jail the user. 0 = no, 1 = yes. Default is 1, which can be overridden in main config."
echo " -w <0|1> Write user info to /home/username/.passwd. 0 = no, 1 = yes. Default is 1, which can be overridden in main config."
2021-09-16 16:21:35 -07:00
exit
}
2021-04-04 13:28:22 -07:00
2021-10-05 11:33:24 -07:00
vhost:getoptions "$@"
2021-04-04 13:28:22 -07:00
2021-10-05 11:33:24 -07:00
# check for domain (virtualhost)
if [[ -z $domain ]]; then
echo "domain is required"
exit
2021-08-24 14:59:23 -07:00
fi
2021-08-14 13:33:58 -07:00
2021-10-05 11:33:24 -07:00
if [[ -d /srv/www/$domain ]] || [[ -f /etc/apache2/sites-available/$domain.conf ]]; then
echo "virtualhost for $domain already installed"
2021-04-04 13:28:22 -07:00
exit 1
fi
# check for and set username (length between 3 and 12 characters)
2021-10-05 11:33:24 -07:00
if [[ -z "$username" ]]; then
2024-05-16 11:02:19 -07:00
strippeddomain=`echo $domain | sed 's|\.||g'`
strippeddomain=`echo $strippeddomain | sed 's|-||g'`
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:8}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:7}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:6}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:5}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:9}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:10}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:11}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
2022-09-13 12:58:18 -07:00
username=`echo ${strippeddomain:0:12}`
2021-10-02 15:31:35 -07:00
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
username=`echo ${strippeddomain:0:4}`
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
username=`echo ${strippeddomain:0:3}`
if grep -q "^$username:" /etc/passwd; then
# username already exists, try another
if grep -q "^$username:" /etc/passwd; then
echo "trouble setting unique username, specify '-u USERNAME' to use an existing username"
exit 1
fi
fi
fi
2021-10-02 15:31:35 -07:00
fi
fi
fi
fi
fi
fi
fi
fi
2021-04-04 13:28:22 -07:00
fi
2023-05-04 17:15:27 -07:00
# check for and set write option
if [[ -z $write ]]; then
write=$WRITE_INFO
fi
2021-04-04 13:28:22 -07:00
if ! grep -q "^$username:" /etc/passwd; then
# check for and set password
2021-10-05 11:33:24 -07:00
if [[ -z "$password" ]]; then
2021-04-04 13:28:22 -07:00
password=`/usr/bin/pwgen 12 1`
fi
# check for and set php-fpm process manager max children
if [[ -z $fpmmax ]]; then
fpmmax=$FPM_MAX
fi
2021-08-14 13:04:46 -07:00
# add user
2023-05-04 17:15:27 -07:00
/usr/local/bin/vhost-user-add.sh -u $username -p "$password" -x $fpmmax -w $write
2023-05-04 17:00:35 -07:00
# check for and set jail option
if [[ -z $jail ]]; then
jail=$JAIL_USER
fi
# if jail option is yes (1) then jail user
if [[ $jail == 1 ]]; then
2022-09-01 15:32:26 -07:00
# job is run in the background as it can take about 1 minute to complete
/usr/local/bin/vhost-user-jail.sh -u $username >/dev/null 2>/dev/null &
# pause to give above script time to create jail home dir which is used by vhost-add.sh below
sleep 1
2021-04-04 13:28:22 -07:00
fi
fi
2021-08-14 13:04:46 -07:00
# add virtualhost
/usr/local/bin/vhost-add.sh -d $domain -u $username > /dev/null 2>&1
2021-09-16 16:21:35 -07:00
# add mysql database
/usr/local/bin/vhost-mysql-db-add.sh -d $domain> /dev/null 2>&1