Redis + RateLimiting

This commit is contained in:
2024-04-23 20:14:32 +02:00
parent c715dadb11
commit 6c39c292b0
15 changed files with 330 additions and 48 deletions

View File

@@ -29,3 +29,15 @@ services:
context: './docker/php/'
links:
- db
- cache
cache:
container_name: webbase-redis
image: redis:latest
ports:
- '6379:6379'
command: redis-server --save 20 1 --loglevel warning --requirepass webbase-redis
volumes:
- cache:/data
volumes:
cache:
driver: local