@zvava@twtxt.net I am getting [2025/09/11 12:56:01.816] ⇒  please set config.host when trying to run “bbycll”. How to bypass that tiny hurdle?
Woot, thank you! Using a config.json like this:
{
  "host": "localhost:31212",
  "protocols": ["http"]
}
Indeed did the trick! I know it isn’t production ready, but I wanted to see with my own eyes, locally, how did it look. :-) I like where you are going! It is looking very nice, and polished. Can’t wait for an alpha, beta, and release!
On the configuration topic, the example at the repo reads like this:
“
Hmm, twtxt Yarn is misbehaving. Can’t even edit, nor delete. Oh well.
Adding too this. The configuration example at the repository reads:
{
	"nick": "Example",
	"description": "alice's twtxt instance!",
	"host": "twtxt.example.com",
	"admin": "alice"
}
Would it make more sense changing nick to instance_name or similar? Usually nick is reserved for users, like here, quark. Right? Also, is host the same FQDN to be used while proxying traffic to the application? That is, using the above configuration, it’s Caddy configuration would be:
twtxt.example.com {
	encode
	reverse_proxy :31212
}
Is that correct?