Skip to content

Commit

Permalink
Merge pull request #1531 from bbkz/localdev
Browse files Browse the repository at this point in the history
Fix wrong default setting in docker image
  • Loading branch information
rolandgeider authored Dec 17, 2023
2 parents efa1d7a + f836741 commit 22e354f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extras/docker/development/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
# Django Axes
#
AXES_ENABLED = env.bool('AXES_ENABLED', True)
AXES_LOCKOUT_PARAMETERS = env.list('AXES_LOCKOUT_PARAMETERS', default=['ip-address'])
AXES_LOCKOUT_PARAMETERS = env.list('AXES_LOCKOUT_PARAMETERS', default=['ip_address'])
AXES_FAILURE_LIMIT = env.int('AXES_FAILURE_LIMIT', 10)
AXES_COOLOFF_TIME = timedelta(minutes=env.float('AXES_COOLOFF_TIME', 30))
AXES_HANDLER = env.str('AXES_HANDLER', 'axes.handlers.cache.AxesCacheHandler')
Expand Down

0 comments on commit 22e354f

Please sign in to comment.