Skip to content

Commit

Permalink
fix(bruteforce): adress ip cache
Browse files Browse the repository at this point in the history
  • Loading branch information
AkekoChan committed Mar 13, 2024
1 parent fafb186 commit 0e03196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/routes/auth.routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (process.env.ENVIRONMENT == "dev") {
store = new ExpressBrute.MemoryStore(); // stores state locally, don't use this in production
} else {
// stores state with memcached
store = new MemcachedStore(["127.0.0.1:11211"], {
store = new MemcachedStore(["flami-api.onrender.com:11211"], {
prefix: "NoConflicts",
});
}
Expand Down

0 comments on commit 0e03196

Please sign in to comment.