#!/bin/bash # # vhost-stack # https://git.stack-source.com/msb/vhost-stack # MIT License Copyright (c) 2021 Matthew Saunders Brown # load include file source $(dirname $0)/vhost.sh help() { thisfilename=$(basename -- "$0") echo "Add virtualhost to this server, including shell user and MySQL database." echo "" echo "usage: $thisfilename -d [OPTIONS]" echo "" echo " -h Print this help." echo " -d Domain name of VirtualHost to remove." echo " -u Username to use for this virtualhost. Optional, defaults to first 8 alphanumeric characters of virtualhost." echo " -p Password for username. Optional, random password generated if none specified." echo " -j Whether or not to jail the user. Optional, default is to not jail user." echo " -w Write user & mysql info to files. Warning! This inlcudes the unencrypted passwords." exit } vhost:getoptions "$@" # check for domain (virtualhost) if [[ -z $domain ]]; then echo "domain is required" exit fi if [[ -d /srv/www/$domain ]] || [[ -f /etc/apache2/sites-available/$domain.conf ]]; then echo "virtualhost for $domain already installed" exit 1 fi # check for and set username if [[ -z "$username" ]]; then username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:8}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:7}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:6}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:5}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:9}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:10}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:11}` if grep -q "^$username:" /etc/passwd; then # username already exists, try another username=`echo $domain | sed 's|\.||'` username=`echo $username | sed 's|-||'` username=`echo ${username:0:12}` 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 fi fi fi fi fi fi if ! grep -q "^$username:" /etc/passwd; then # check for and set password if [[ -z "$password" ]]; then password=`/usr/bin/pwgen 12 1` fi # add user if [[ -n $write ]]; then /usr/local/bin/vhost-user-add.sh -u $username -p "$password" -w else /usr/local/bin/vhost-user-add.sh -u $username -p "$password" fi # if jail option is set then jail user if [[ -n $jail ]]; then /usr/local/bin/vhost-user-jail.sh -u $username > /dev/null 2>&1 fi fi # add virtualhost /usr/local/bin/vhost-add.sh -d $domain -u $username > /dev/null 2>&1 # add mysql database if [[ -n $write ]]; then /usr/local/bin/vhost-mysql-db-add.sh -d $domain -w > /dev/null 2>&1 else /usr/local/bin/vhost-mysql-db-add.sh -d $domain > /dev/null 2>&1 fi