Skip to content

config set

Set a configuration value in the ~/.fw/config.yml file. The value is validated before being saved.

Note

Settings saved in the config file can be overridden by environment variables. Use flyw config list to see which source is currently active for each setting.

Examples

# Set connection timeout to 30 seconds
flyw config set connect_timeout 30
# Set read timeout to 120 seconds
flyw config set read_timeout 120
# Disable SSL verification (not recommended for production)
flyw config set insecure true
# Trust an extra CA certificate bundle, in addition to the default trust store
flyw config set ssl_cert /path/to/ca-bundle.crt
# Trust multiple extra CA bundles (comma-separated)
flyw config set ssl_cert /path/to/a.crt,/path/to/b.crt

Boolean Values

For boolean settings, accepted values are:

  • True: true, yes, 1, on
  • False: false, no, 0, off

Available Keys

See the config index for a complete list of available configuration keys with their types and defaults.

Usage