diff --git a/utils/init_symlinks.sh b/utils/init_symlinks.sh
index 7de78fe719d0bbefbf242fbfa8c047614ae5bc8a..11be3da0b1d9b0ff5260d10a621fbe4f2e9992dc 100755
--- a/utils/init_symlinks.sh
+++ b/utils/init_symlinks.sh
@@ -97,18 +97,32 @@ if [[ $depsCount > 0 ]]; then
 			fi
 		done
 
-		file_path="client/conf/properties.json"
-		if [ -f "${APP_EXISTING_PATH}/$file_path" ]; then
-			echo "copy $file_path"
-			cp -f "${APP_EXISTING_PATH}/$file_path" "$(pwd)/$file_path"
-		fi
-
-		file_path="vas/rest/.htaccess"
-		if [ -f "${APP_EXISTING_PATH}/$file_path" ]; then
-			echo "copy $file_path"
-			cp -f "${APP_EXISTING_PATH}/$file_path" "$(pwd)/$file_path"
-		fi
-		# file_existing_path[2]="vas/rest/conf"
+		declare -a existing_files_path=("client/conf/properties.json"
+										"vas/rest/conf/properties.inc"
+										"vas/rest/conf/properties_domain.inc"
+										"vas/rest/conf/properties_post.inc"
+										"vas/rest/conf/properties_server.inc"
+										"vas/rest/conf/version.inc"
+										"vas/rest/.htaccess")
+		for file_path in "${existing_files_path[@]}"; do
+			if [ -f "${APP_EXISTING_PATH}/$file_path" ]; then
+				echo "copy $file_path"
+				cp -f "${APP_EXISTING_PATH}/$file_path" "$(pwd)/$file_path"
+			fi
+		done
 
+		for properties_dir in $( ls "${APP_EXISTING_PATH}/vas/rest/conf"); do
+			if [ -d "${APP_EXISTING_PATH}/vas/rest/conf/${properties_dir}" ]; then
+				if [ -d "$(pwd)/vas/rest/conf/${properties_dir}" ]; then
+					for properties_file in $( ls "${APP_EXISTING_PATH}/vas/rest/conf/${properties_dir}"); do
+						# if [ ${properties_file:0:10}=="properties"  ||  ${properties_file}=="version.inc" ]; then
+						if [[ $properties_file == "properties"* ]] || [[ $properties_file == "version.inc" ]]; then
+							echo "copy vas/rest/conf/${properties_dir}/${properties_file}"
+							cp -f "${APP_EXISTING_PATH}/vas/rest/conf/${properties_dir}/${properties_file}" "$(pwd)/vas/rest/conf/${properties_dir}/${properties_file}"
+						fi
+					done
+				fi
+			fi
+		done
 	fi
 fi