Depending on the web server installed on your back-end server, the configurations for back-end to listen to Re6st IPv6 (in addition to IPv4) are various.
To verify if the backend is listening to IPv6, you can run:
$ sudo netstat -plnt
The similar expected output will be:
$ sudo ss -utanp -o state LISTENING | grep nginx
tcp 0 128 0.0.0.0:443 0.0.0.0:* users:(("nginx",pid=58369,fd=10),("nginx",pid=58368,fd=10),("nginx",pid=58367,fd=10))
tcp 0 128 0.0.0.0:80 0.0.0.0:* users:(("nginx",pid=58369,fd=8),("nginx",pid=58368,fd=8),("nginx",pid=58367,fd=8))
tcp 0 128 [ipv6_address]:443 [::]:* users:(("nginx",pid=58369,fd=11),("nginx",pid=58368,fd=11),("nginx",pid=58367,fd=11))
tcp 0 128 [ipv6_address]:80 [::]:* users:(("nginx",pid=58369,fd=9),("nginx",pid=58368,fd=9),("nginx",pid=58367,fd=9))
By this means, you will be able to access the website via the IPv6 address already.