Initial commit of unified WebGIS projects

This commit is contained in:
ilham_gmail
2026-06-11 17:42:40 +07:00
commit a0c61f2bc2
64 changed files with 7924 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM php:8.2-apache
# Install mysqli extension for PHP
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
# Enable Apache rewrite module
RUN a2enmod rewrite
# Copy project files into container
COPY . /var/www/html/
# Set ownership and permissions for uploads directory
RUN chown -R www-data:www-data /var/www/html && chmod -R 775 /var/www/html/uploads
EXPOSE 80