Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
MultipleIPAddressDiscrepancy
WARNING
biteanapple.com has multiple IP addresses in its DNS records. While they appear to be accessible on the network, we have detected that they produce differing results when sent an ACME HTTP validation request. This may indicate that some of the IP addresses may unintentionally point to different servers, which would cause validation to fail.
[Address=2a02:4780:11:786:0:2367:26fa:2,Address Type=IPv6,Server=LiteSpeed,HTTP Status=404] vs [Address=93.127.167.38,Address Type=IPv4,Server=nginx/1.24.0 (Ubuntu),HTTP Status=404]
As Bruce noted, your DNS has 2 IP addresses. One A record for IPv4 and one AAAA record for IPv6
The IPv4 points to an nginx server but IPv6 points to a LiteSpeed server.
Hostinger often sets up an IPv6 for new configs. Let's Encrypt prefers the IPv6 so is failing as the LiteSpeed server does not respond correctly.
You need to correct the IPv6 address and make sure nginx is configured to listen on that. Or, remove the AAAA record if you don't have IPv6 support. Contact Hostinger support if you are not sure how to do this.
It's good that you have a cert. You need to fix your nginx config redirects. They currently result in a loop. You should not be redirecting back to HTTP from your HTTPS (port 443) server block
# HTTP to HTTPS (good)
curl -I http://biteanapple.com/
HTTP/1.1 301 Moved Permanently
Server: nginx/1.24.0 (Ubuntu)
Location: https://biteanapple.com/
# HTTPS to HTTP (bad)
curl -I https://biteanapple.com/
HTTP/1.1 301 Moved Permanently
Server: nginx/1.24.0 (Ubuntu)
Location: http://biteanapple.com/
# HTTP back to HTTPS (looping)
curl -I http://biteanapple.com/
HTTP/1.1 301 Moved Permanently
Server: nginx/1.24.0 (Ubuntu)
Location: https://biteanapple.com/