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.
81 lines
2.5 KiB
81 lines
2.5 KiB
#!/bin/bash
|
|
# info: remove ssl force from domain
|
|
# options: USER DOMAIN [RESTART] [QUIET]
|
|
#
|
|
# example: v-delete-web-domain-ssl-force admin domain.tld
|
|
#
|
|
# This function removes force SSL configurations.
|
|
|
|
#----------------------------------------------------------#
|
|
# 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
|
|
# shellcheck source=/usr/local/hestia/func/domain.sh
|
|
source $HESTIA/func/domain.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_valid 'web' 'DOMAIN' "$domain"
|
|
is_object_valid 'web' 'DOMAIN' "$domain" "$SSL_FORCE"
|
|
|
|
# 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)
|
|
|
|
# Remove forcessl configs
|
|
if [ -f "$HOMEDIR/$user/conf/web/$domain/$WEB_SYSTEM.forcessl.conf" ]; then
|
|
rm -f $HOMEDIR/$user/conf/web/$domain/$WEB_SYSTEM.forcessl.conf
|
|
fi
|
|
if [ -f "$HOMEDIR/$user/conf/web/$domain/$PROXY_SYSTEM.forcessl.conf" ]; then
|
|
rm -f $HOMEDIR/$user/conf/web/$domain/$PROXY_SYSTEM.forcessl.conf
|
|
fi
|
|
|
|
#----------------------------------------------------------#
|
|
# Hestia #
|
|
#----------------------------------------------------------#
|
|
|
|
if [ -z "$SSL_FORCE" ]; then
|
|
add_object_key "web" 'DOMAIN' "$domain" 'SSL_FORCE' 'SSL_HOME'
|
|
fi
|
|
|
|
update_object_value 'web' 'DOMAIN' "$domain" '$SSL_FORCE' 'no'
|
|
|
|
# Restart services if requested
|
|
$BIN/v-restart-web "$restart"
|
|
check_result $? "Web restart failed" > /dev/null
|
|
|
|
$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 disabled (Domain: $domain)."
|
|
fi
|
|
log_event "$OK" "$ARGUMENTS"
|
|
|
|
exit
|