NextcloudT&M Hansson IT AB

I installed backup from Link and I’m really happy because it made it much easier for me, but I have a problem with configuring the reverse proxy for nexcloud because when I set haprxy ip + port under SSL in pfsens, the home page keeps loading.

# Automaticaly generated, dont edit manually.
# Generated on: 2023-10-29 11:45
global
	maxconn			1000
	log			/var/run/log	local0	info
	stats socket /tmp/haproxy.socket level admin  expose-fd listeners
	uid			80
	gid			80
	nbthread			1
	hard-stop-after		15m
	chroot				/tmp/haproxy_chroot
	daemon
	tune.ssl.default-dh-param	2048
	log-send-hostname		HaproxyMasterNode
	server-state-file /tmp/haproxy_server_state

listen HAProxyLocalStats
	bind 127.0.0.1:2200 name localstats
	mode http
	stats enable
	stats refresh 10
	stats admin if TRUE
	stats show-legends
	stats uri /haproxy/haproxy_stats.php?haproxystats=1
	timeout client 5000
	timeout connect 5000
	timeout server 5000

frontend xxxxxxx
	bind			192.168.1.20:443 name 192.168.1.20:443   ssl crt-list /var/etc/haproxy/xxxxxxxx.crt_list  
	bind			192.168.1.20:80 name 192.168.1.20:80   
	mode			http
	log			global
	option			http-keep-alive
	timeout client		30000
	acl			pf	var(txn.txnhost) -m str -i pf.xxxxxxxxx
	acl			nas	var(txn.txnhost) -m str -i nas.xxxxxxxxx
	acl			prox	var(txn.txnhost) -m str -i prox.xxxxxxxxx
	acl			next	var(txn.txnhost) -m str -i next.xxxxxxxxx
	http-request set-var(txn.txnhost) hdr(host)
	use_backend pf_ipvANY  if  pf 
	use_backend nas_ipvANY  if  nas 
	use_backend prox_ipvANY  if  prox 
	use_backend next_ipvANY  if  next 

backend pf_ipvANY
	mode			http
	id			104
	log			global
	option			log-health-checks
	timeout connect		5000000
	timeout server		5000000
	retries			3
	load-server-state-from-file	global
	server			pf 192.168.1.20:10443 id 105 ssl  verify none 

backend nas_ipvANY
	mode			http
	id			100
	log			global
	option			log-health-checks
	timeout connect		5000000
	timeout server		5000000
	retries			3
	load-server-state-from-file	global
	server			nas 192.168.1.10:444 id 105 ssl  verify none 

backend prox_ipvANY
	mode			http
	id			102
	log			global
	option			log-health-checks
	timeout connect		5000000
	timeout server		5000000
	retries			3
	load-server-state-from-file	global
	server			pf 192.168.1.2:8006 id 105 ssl  verify none 

backend next_ipvANY
	mode			http
	id			101
	log			global
	timeout connect		30000
	timeout server		30000
	retries			3
	load-server-state-from-file	global
	server			next 192.168.1.50:443 id 103 ssl  verify none