You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							98 lines
						
					
					
						
							3.0 KiB
						
					
					
				
			
		
		
	
	
							98 lines
						
					
					
						
							3.0 KiB
						
					
					
				| #!/bin/bash
 | |
| # info: add web domain backend
 | |
| # options: USER DOMAIN [TEMPLATE] [RESTART]
 | |
| #
 | |
| # example: v-add-web-domain-backend admin example.com default yes
 | |
| #
 | |
| # This function is used to add the web backend configuration.
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                Variables & Functions                     #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Argument definition
 | |
| user=$1
 | |
| domain=$2
 | |
| template=${3-default}
 | |
| restart=$4
 | |
| 
 | |
| # Includes
 | |
| # shellcheck source=/etc/hestiacp/hestia.conf
 | |
| source /etc/hestiacp/hestia.conf
 | |
| # shellcheck source=/usr/local/hestia/func/main.sh
 | |
| source $HESTIA/func/main.sh
 | |
| # shellcheck source=/usr/local/hestia/func/domain.sh
 | |
| source $HESTIA/func/domain.sh
 | |
| # shellcheck source=/usr/local/hestia/conf/hestia.conf
 | |
| source $HESTIA/conf/hestia.conf
 | |
| # load config file
 | |
| source_conf "$HESTIA/conf/hestia.conf"
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                    Verifications                         #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| check_args '2' "$#" 'USER DOMAIN [TEMPLATE] [RESTART]'
 | |
| is_format_valid 'user' 'domain'
 | |
| is_system_enabled "$WEB_BACKEND" 'WEB_BACKEND'
 | |
| is_object_valid 'user' 'USER' "$user"
 | |
| is_backend_template_valid "$template"
 | |
| 
 | |
| # Perform verification if read-only mode is enabled
 | |
| check_hestia_demo_mode
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                       Action                             #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Defining pool directory
 | |
| prepare_web_backend
 | |
| get_domain_values 'web'
 | |
| 
 | |
| if [[ -n "$BACKEND" && "$BACKEND" != "$template" ]]; then
 | |
| 	check_result "$E_EXISTS" "Pool already exists"
 | |
| fi
 | |
| 
 | |
| # Allocating backend port
 | |
| backend_port=9000
 | |
| ports=$(grep -v '^;' $pool/* 2> /dev/null | grep listen | grep -o :[0-9].*)
 | |
| ports=$(echo "$ports" | sed "s/://" | sort -n)
 | |
| for port in $ports; do
 | |
| 	if [ "$backend_port" -eq "$port" ]; then
 | |
| 		backend_port=$((backend_port + 1))
 | |
| 	fi
 | |
| done
 | |
| 
 | |
| # Adding backend config
 | |
| cat $WEBTPL/$WEB_BACKEND/$template.tpl \
 | |
| 	| sed -e "s|%backend_port%|$backend_port|" \
 | |
| 		-e "s|%user%|$user|g" \
 | |
| 		-e "s|%domain%|$domain|g" \
 | |
| 		-e "s|%backend%|$backend_type|g" \
 | |
| 		-e "s|%backend_version%|$backend_version|g" > $pool/$backend_type.conf
 | |
| 
 | |
| # Set correct document root path
 | |
| if [ -n "$CUSTOM_DOCROOT" ]; then
 | |
| 	docroot="$CUSTOM_DOCROOT"
 | |
| 	if [ -n "$CUSTOM_PHPROOT" ]; then
 | |
| 		docroot="$CUSTOM_PHPROOT"
 | |
| 	fi
 | |
| 	sed -i "s|/home\/$user\/web\/$domain\/public_html|$docroot|g" $pool/$backend_type.conf
 | |
| else
 | |
| 	docroot="$HOMEDIR/$user/web/$domain/public_html/"
 | |
| fi
 | |
| 
 | |
| #----------------------------------------------------------#
 | |
| #                       Hestia                             #
 | |
| #----------------------------------------------------------#
 | |
| 
 | |
| # Restart php interpreter
 | |
| $BIN/v-restart-web-backend "$restart" "$backend_version"
 | |
| check_result $? "PHP restart failed" > /dev/null
 | |
| 
 | |
| # Logging
 | |
| $BIN/v-log-action "$user" "Info" "Web" "Web domain configuration applied (Domain: $domain, Backend: $WEB_BACKEND)."
 | |
| log_event "$OK" "$ARGUMENTS"
 | |
| 
 | |
| exit
 |