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.
		
		
		
		
		
			
		
			
				
					79 lines
				
				2.3 KiB
			
		
		
			
		
	
	
					79 lines
				
				2.3 KiB
			| 
								 
											2 years ago
										 
									 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								# info: remove ssl force from domain
							 | 
						||
| 
								 | 
							
								# options: USER DOMAIN [RESTART] [QUIET]
							 | 
						||
| 
								 | 
							
								#
							 | 
						||
| 
								 | 
							
								# example: v-delete-web-domain-ssl-hsts user 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)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Check for Apache/Nginx or Nginx/PHP-FPM configuration
							 | 
						||
| 
								 | 
							
								if [ -z $PROXY_SYSTEM ]; then
							 | 
						||
| 
								 | 
							
									hstsconf="$HOMEDIR/$user/conf/web/$domain/$WEB_SYSTEM.hsts.conf"
							 | 
						||
| 
								 | 
							
								else
							 | 
						||
| 
								 | 
							
									hstsconf="$HOMEDIR/$user/conf/web/$domain/$PROXY_SYSTEM.hsts.conf"
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								rm -f $hstsconf
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								#----------------------------------------------------------#
							 | 
						||
| 
								 | 
							
								#                       Hestia                             #
							 | 
						||
| 
								 | 
							
								#----------------------------------------------------------#
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# Set forcessl flag to enabled
							 | 
						||
| 
								 | 
							
								update_object_value 'web' 'DOMAIN' "$domain" '$SSL_HSTS' '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" "HTTP Strict Transport Security disabled (Domain: $domain)."
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								log_event "$OK" "$ARGUMENTS"
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								exit
							 |