Can I put Hugo web server startup flags in config.toml?

(or .yaml, .json) Although it is probably best practice to start hugo server with the CLI flags actually on the command line, just wondering if I can set any flags as params in the config.toml referenced by --config.

Was wanting to do this…

[server]
    bind = "10.0.2.15"

I tried a few variations and didn’t figure it out. I poked through the source code and didn’t notice any supporting evidence.

No, the CLI flags and config is not connected. Most of the CLI flags are duplicated in config, but bind isn’t one of them.