Earlier quoted context omitted.
Google has recently added `llms.txt` to Chrome's Lighthouse check for agentic browsing ( https://searchengineland.com/google-llms-txt-chrome-lighthou... ), so adoption may be coming. Admittedly, I put more faith in that I copied from Gwern.net. This convention is discoverable (just read the HTML) and naturally adapts to any website size and structure. I have created an `llms.txt` for my website anyhow. I use a fixed…
Giving a markdown version of a page seems like an interesting choice instead of just embedding a schema marked up one
So You Want to Define a Well-Known URI
61–70 of 105 posts
Re: So You Want to Define a Well-Known URI
#62Re: So You Want to Define a Well-Known URI
#63.well-known started tidy and quietly became the junk drawer of the web root. security.txt, ACME, app-site-association, and counting.
Re: So You Want to Define a Well-Known URI
#64Re: So You Want to Define a Well-Known URI
#65No, in fact I don't. But this post wouldn't be of any help anyway. It feels like it's about nothing, there is no substance, just stating some obvious facts. Without examples that lead to some real recommendations, this whole expertise claimed by the author is of no use.
> expertise claimed by the author The author is on record as trying to remove HTTP 418 "I'm a teapot" support from NodeJS, which resulted in backlash and Python adding support for it. https://en.wikipedia.org/wiki/Hyper_Text_Coffee_Pot_Control_...
Re: So You Want to Define a Well-Known URI
#66.well-known started tidy and quietly became the junk drawer of the web root. security.txt, ACME, app-site-association, and counting.
Re: So You Want to Define a Well-Known URI
#67Earlier quoted context omitted.
DNS TXT challenge for example. Also better because you can get wildcard certs.
Also, DNS-PERSIST-01 seems to be coming soon for Let's Encrypt, which should allow even people that can't easily dynamically update their DNS records to get wildcard certs. I assume this might become more widely used than HTTP-01 challenges.
Re: So You Want to Define a Well-Known URI
#68Earlier quoted context omitted.
> Why discord domain verification instead of domain-verifications with a dynamic list on entries? The TXT record itself is already a dynamic list of entries. It's far simpler and easier to iterate through the list and compare the start of each value with your search string until you find "discord domain verification" directly than it would be to do anything else. Example: ;; ANSWER SECTION: ycombinator.com. 300 IN TX…
Having all those TXT records at the domain apex like that makes the TXT query reply huge , which affects, for instance, every mail recipient who merely wants to check the SPF record. This is a bad pattern to follow.
If your site allows user-created subdomains it shouldn't allow leading underscore. This is reserved somehow.
Re: So You Want to Define a Well-Known URI
#69I'm not sure I like ` https://domain.com/.well-known/robots.txt ` any better frankly
Whoever decided it would be a good idea for ".well-known" to be a "hidden" directory is a complete fool. All it does is provide the opportunity for confusion, misconfiguration, skipped backups, missed git check-ins, forgotten updates and more. Literally the only people a folder like that is hidden from is the whoever is managing the web server. Sure, if everyone knows what they're doing, it's not a problem. But we al…