Update: Change method to ECDH+AES encryption

oh_security
TAMDeveloper13 2 months ago
parent 67eae7a881
commit 130f8acf8f

@ -2,9 +2,9 @@ from slowapi import Limiter
from slowapi.util import get_remote_address
from src.config import RATELIMIT_STORAGE_URI
limiter = Limiter(
key_func=get_remote_address,
default_limits=["120 per hour", "2880 per day"],
strategy="fixed-window",
storage_uri=RATELIMIT_STORAGE_URI,
)
# limiter = Limiter(
# key_func=get_remote_address,
# default_limits=["120 per hour", "2880 per day"],
# strategy="fixed-window",
# storage_uri=RATELIMIT_STORAGE_URI,
# )
Loading…
Cancel
Save