# Configuration

In this area we will learn how to configure ColdBox programmatically via the `config/ColdBox.cfc` file. Most of the configurations in ColdBox are pre-set thanks to it's conventions over configuration approach. So the majority of settings are for fine-grained control, third-party modules and more.

{% hint style="info" %}
ColdBox relies on **conventions** instead of configurations.
{% endhint %}

{% hint style="danger" %}
If you make changes to any of the main configuration files you will need to re-initialize your application for the settings to take effect.
{% endhint %}

## Re-initializing an Application

Please note that anytime you make any configuration changes or there are things in memory you wish to clear out, you will be using a URL action that will tell the ColdBox [Bootstrapper](/getting-started/configuration/bootstrapper-application.cfc.md) to reinitialize the application. This special URL variable is called `fwreinit` and can be any value or a specific password you setup in the [ColdBox configuration directive](/getting-started/configuration/coldbox.cfc/configuration-directives.md).

```
// reinit with no password
index.cfm?fwreinit=1

// reinit with password
index.cfm?fwreinit=mypass
```

You can also use CommandBox CLI to reinit your application if you are using its embedded server:

```bash
$ coldbox reinit
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://coldbox.ortusbooks.com/getting-started/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
