“GitHub Pages 404 for .well-known/stellar.toml even though file is in main branch” #179851
-
Select Topic AreaQuestion BodyHello, I’m trying to host a Stellar TOML file for my token project so Pi Wallet can fetch metadata and display the logo/description. My logo (airlie.png) is served correctly from GitHub Pages, but the TOML file always returns a 404 error. Repo link: https://github.com/NTKleme/airlie-token-assets Expected TOML URL: Current situation: The logo loads fine at: What I’ve checked: Questions: Why is GitHub Pages serving airlie.png but not .well-known/stellar.toml? Goal: I need a working HTTPS URL (no blob/) so Pi Wallet can fetch the TOML from my Issuer Wallet’s home_domain. Any guidance on fixing the Pages setup or confirming the correct way to serve .well-known/stellar.toml would be hugely appreciated! Thanks in advance 🙏 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Your TOML 404s because GitHub Pages is running Jekyll and Jekyll ignores dot foldersJust add a file called .nojekyll in the root of your repo and pushThis makes Pages serve .well-known normallyAfter that your TOML should load fine |
Beta Was this translation helpful? Give feedback.
Your TOML 404s because GitHub Pages is running Jekyll and Jekyll ignores dot foldersJust add a file called .nojekyll in the root of your repo and pushThis makes Pages serve .well-known normallyAfter that your TOML should load fine