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
						
					
					
						
							2.8 KiB
						
					
					
				
			
		
		
	
	
							98 lines
						
					
					
						
							2.8 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: Adding force SSL for a domain
 | 
						|
# options: USER DOMAIN [RESTART] [QUIET]
 | 
						|
#
 | 
						|
# example: v-add-web-domain-ssl-force admin acme.com
 | 
						|
#
 | 
						|
# This function forces SSL for the requested domain.
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
user=$1
 | 
						|
domain=$2
 | 
						|
restart="$3"
 | 
						|
quiet="$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
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '2' "$#" 'USER DOMAIN'
 | 
						|
is_format_valid 'user' 'domain'
 | 
						|
is_object_valid 'user' 'USER' "$user"
 | 
						|
is_object_unsuspended 'user' 'USER' "$user"
 | 
						|
is_object_valid 'web' 'DOMAIN' "$domain"
 | 
						|
is_object_unsuspended 'web' 'DOMAIN' "$domain"
 | 
						|
 | 
						|
# Perform verification if read-only mode is enabled
 | 
						|
check_hestia_demo_mode
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Load domain data
 | 
						|
parse_object_kv_list $(grep "DOMAIN='$domain'" $USER_DATA/web.conf)
 | 
						|
 | 
						|
# Check if SSL is enabled
 | 
						|
if [ "$SSL" != 'yes' ]; then
 | 
						|
	echo "Error: SSL is not enabled"
 | 
						|
	exit "$E_NOTEXIST"
 | 
						|
fi
 | 
						|
 | 
						|
# Check if proxy is active
 | 
						|
if [ -n "$PROXY_SYSTEM" ]; then
 | 
						|
	forcessl="$HOMEDIR/$user/conf/web/$domain/$PROXY_SYSTEM.forcessl.conf"
 | 
						|
else
 | 
						|
	forcessl="$HOMEDIR/$user/conf/web/$domain/$WEB_SYSTEM.forcessl.conf"
 | 
						|
fi
 | 
						|
 | 
						|
# Insert redirect commands
 | 
						|
if [ -n "$PROXY_SYSTEM" ] || [ "$WEB_SYSTEM" = 'nginx' ]; then
 | 
						|
	echo 'return 301 https://$host$request_uri;' > $forcessl
 | 
						|
else
 | 
						|
	echo 'RewriteEngine On' > $forcessl
 | 
						|
	echo 'RewriteRule ^(.*)$ https://%{HTTP_HOST}$1 [R=301,L]' >> $forcessl
 | 
						|
fi
 | 
						|
 | 
						|
chown root:$user $forcessl
 | 
						|
chmod 640 $forcessl
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
if [ -z "$SSL_FORCE" ]; then
 | 
						|
	add_object_key "web" 'DOMAIN' "$domain" 'SSL_FORCE' 'SSL_HOME'
 | 
						|
fi
 | 
						|
 | 
						|
# Set forcessl flag to enabled
 | 
						|
update_object_value 'web' 'DOMAIN' "$domain" '$SSL_FORCE' 'yes'
 | 
						|
 | 
						|
# Restart web server
 | 
						|
$BIN/v-restart-web "$restart"
 | 
						|
check_result $? "Web restart failed" > /dev/null
 | 
						|
 | 
						|
# Restart proxy
 | 
						|
$BIN/v-restart-proxy "$restart"
 | 
						|
check_result $? "Proxy restart failed" > /dev/null
 | 
						|
 | 
						|
# Logging
 | 
						|
if [ "$quiet" != "yes" ]; then
 | 
						|
	$BIN/v-log-action "$user" "Info" "Web" "Automatic HTTPS redirection enabled (Domain: $domain)."
 | 
						|
fi
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |