Closes #21865: Display debug toolbar if INTERNAL_IPS is empty (#21871)

This commit is contained in:
Jeremy Stretch
2026-04-09 13:19:25 -04:00
committed by GitHub
parent cc03d509d1
commit 7462e45c8e
5 changed files with 38 additions and 7 deletions

View File

@@ -105,6 +105,13 @@ A list of IP addresses recognized as internal to the system, used to control the
example, the debugging toolbar will be viewable only when a client is accessing NetBox from one of the listed IP
addresses (and [`DEBUG`](./development.md#debug) is `True`).
!!! info "New in NetBox v4.6"
Setting this parameter to an empty list will enable the toolbar for all requests provided debugging is enabled:
```python
INTERNAL_IPS = []
```
---
## ISOLATED_DEPLOYMENT