skip to Main Content

accessing the minio object presigned get URL both from inside and outside docker container – Nginx

I used the following docker-compose.yml file to deploy a FastAPI, MongoDB, Minio docker containers. version: '3.7' services: db: image: mongo:latest container_name: mongodb user: 1000:1000 volumes: - /home/krishna/mongodb/db:/data/db minio: image: minio/minio:latest container_name: minio command: server /data --console-address ":9001" ports: - 9000:9000…

VIEW QUESTION

Redis – Ratelimit in Fastapi

How to ratelimit API endpoint request in Fastapi application ? I need to ratelimit API call 5 request per second per user and exceeding that limit blocks that particular user for 60 seconds. In main.py def get_application() -> FastAPI: application…

VIEW QUESTION
Back To Top
Search