TOML Generator
Create a xrp-ledger.toml file and place it at https://yourdomain.com/.well-known/xrp-ledger.toml.
What do you want to add?
The file must be served over HTTPS. Use application/toml when possible and enable Access-Control-Allow-Origin: * so explorers and wallets can read it.
How to enable CORS
Use one of these examples for xrp-ledger.toml. Adjust the path if your server config already points to the .well-known directory.
Apache config
<Location "/.well-known/xrp-ledger.toml">
Header set Access-Control-Allow-Origin "*"
</Location>.htaccess
<Files "xrp-ledger.toml">
Header set Access-Control-Allow-Origin "*"
</Files>nginx config
location /.well-known/xrp-ledger.toml {
add_header 'Access-Control-Allow-Origin' '*';
}Managed hosting
Look for custom headers, response headers, or CORS rules in your hosting panel and add Access-Control-Allow-Origin with the value * for this TOML file only.