adding ratelimiting with reddis db
Deploy / deploy (push) Failing after 3s

This commit is contained in:
2026-05-06 09:27:02 +02:00
parent d82a08f77b
commit 5deb0e1056
16 changed files with 312 additions and 37 deletions
+3 -1
View File
@@ -3,7 +3,9 @@ FROM php:apache
# Install necessary PHP extensions and tools
RUN apt-get update && \
apt-get install -y libzip-dev zip zlib1g-dev git unzip && \
docker-php-ext-install mysqli zip
docker-php-ext-install mysqli zip && \
pecl install redis && \
docker-php-ext-enable redis
# Enable SSL module for Apache
RUN a2enmod ssl