RATS-NoPtr signifies "Reverse Address Tuple Space - No Pointer record." It indicates that a reverse DNS (Domain Name System) lookup for an IP address has failed because there is no PTR (pointer) record associated with the IP address. RATS-NoPtr error in relation to an Azure app service may be because the reverse DNS for the app service's public IP address has not been configured correctly.
Refer more information here
https://learn.microsoft.com/en-us/azure/dns/dns-reverse-dns-for-azure-services
If you don't have a virtual machine for your app service and you are using a custom domain, you can still set the reverse DNS for your app service by creating a CNAME record for your domain that points to your app service's hostname.
Please follow the below steps to configure.
- Determine the hostname of your app service. You can find the hostname in the Azure portal by going to the Overview page for your app service and looking for the "URL" field. The hostname will be the portion of the URL that comes after the "https://" prefix.
- Go to the domain registrar where you registered your custom domain and log in to the domain management console.
- Look for a section or option that allows you to manage DNS records for your domain.
- Create a new CNAME record for your domain that points to the hostname of your app service. The CNAME record should have a name that matches your desired reverse DNS value (e.g. "contosoapp1"), and the value should be the hostname of your app service.
- Save the CNAME record and wait for it to propagate. It may take some time for the change to take effect, as DNS changes can take up to 72 hours to propagate.
Once the CNAME record has propagated, the reverse DNS for your app service should be set to the desired value.