index.html 765 B

12345678910111213141516
  1. # NetBox Configuration
  2. NetBox's local configuration is stored in `netbox/netbox/configuration.py`. An example configuration is provided at `netbox/netbox/configuration.example.py`. You may copy or rename the example configuration and make changes as appropriate. NetBox will not run without a configuration file.
  3. While NetBox has many configuration settings, only a few of them must be defined at the time of installation.
  4. * [Required settings](configuration/required-settings.md)
  5. * [Optional settings](configuration/optional-settings.md)
  6. ## Changing the Configuration
  7. Configuration settings may be changed at any time. However, the NetBox service must be restarted before the changes will take effect:
  8. ```no-highlight
  9. # sudo supervsiorctl restart netbox
  10. ```