mirror of
https://github.com/YunoHost/dynette.git
synced 2024-09-03 20:06:17 +02:00
Turns out the memory storage of Limiter is only for dev env, not reliable in prod, use redis instead
This commit is contained in:
parent
c63f631707
commit
b8a0b529dd
2 changed files with 7 additions and 2 deletions
5
app.py
5
app.py
|
@ -23,7 +23,10 @@ limiter = Limiter(
|
||||||
get_remote_address,
|
get_remote_address,
|
||||||
app=app,
|
app=app,
|
||||||
default_limits=["50 per hour"],
|
default_limits=["50 per hour"],
|
||||||
storage_uri="memory://",
|
#storage_uri="memory://", # <- For development
|
||||||
|
storage_uri="redis://localhost:6379",
|
||||||
|
storage_options={"socket_connect_timeout": 30},
|
||||||
|
strategy="fixed-window", # or "moving-window"
|
||||||
)
|
)
|
||||||
|
|
||||||
assert os.path.isdir(
|
assert os.path.isdir(
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
|
async-timeout==4.0.2
|
||||||
bcrypt==4.0.1
|
bcrypt==4.0.1
|
||||||
click==8.1.3
|
click==8.1.3
|
||||||
commonmark==0.9.1
|
commonmark==0.9.1
|
||||||
Deprecated==1.2.13
|
Deprecated==1.2.13
|
||||||
Flask==2.2.2
|
Flask==2.2.2
|
||||||
Flask-Limiter==3.1.0
|
Flask-Limiter==3.3.0
|
||||||
gunicorn==20.1.0
|
gunicorn==20.1.0
|
||||||
importlib-metadata==6.0.0
|
importlib-metadata==6.0.0
|
||||||
itsdangerous==2.1.2
|
itsdangerous==2.1.2
|
||||||
|
@ -14,6 +15,7 @@ ordered-set==4.1.0
|
||||||
packaging==23.0
|
packaging==23.0
|
||||||
Pygments==2.14.0
|
Pygments==2.14.0
|
||||||
PyYAML==6.0
|
PyYAML==6.0
|
||||||
|
redis==4.5.4
|
||||||
rich==12.6.0
|
rich==12.6.0
|
||||||
typing-extensions==4.4.0
|
typing-extensions==4.4.0
|
||||||
Werkzeug==2.2.2
|
Werkzeug==2.2.2
|
||||||
|
|
Loading…
Reference in a new issue