add all project files

This commit is contained in:
2026-06-10 16:49:48 +07:00
parent 319d7f0996
commit 19d7bbf798
21 changed files with 3146 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM php:8.2-apache
# Install ekstensi mysqli untuk koneksi ke database
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
# Aktifkan mod_rewrite Apache (berguna untuk URL yang bersih/routing)
RUN a2enmod rewrite
# Update permissions
RUN chown -R www-data:www-data /var/www/html