1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

17 lines
737 B
Markdown
Raw Normal View History

2018-07-17 17:23:10 -04:00
# NetBox Configuration
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.
While NetBox has many configuration settings, only a few of them must be defined at the time of installation.
2018-07-30 17:19:22 -04:00
* [Required settings](required-settings.md)
* [Optional settings](optional-settings.md)
2018-07-17 17:23:10 -04:00
## Changing the Configuration
Configuration settings may be changed at any time. However, the NetBox service must be restarted before the changes will take effect:
```no-highlight
2018-08-21 08:28:23 -06:00
# sudo supervisorctl restart netbox
2018-07-17 17:23:10 -04:00
```