# Photo Capture App — Apache config

# Limit upload size to 20 MB
php_value upload_max_filesize 20M
php_value post_max_size 22M
php_value memory_limit 64M

# Security: don't execute PHP in uploads folder
<IfModule mod_rewrite.c>
    RewriteEngine On
    # Force HTTPS (required for camera access — uncomment if you have SSL)
    # RewriteCond %{HTTPS} off
    # RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
