# Do not list folder contents (files/, thumbnails/ ...)
Options -Indexes

# PHP limits when PHP runs as an Apache module.
# (With PHP-FPM / FastCGI the same values are read from .user.ini)
<IfModule mod_php7.c>
    php_value upload_max_filesize 1G
    php_value post_max_size       1100M
    php_value max_file_uploads    20
    php_value max_input_time      3600
    php_value max_execution_time  300
    php_value memory_limit        256M
</IfModule>
<IfModule mod_php.c>
    php_value upload_max_filesize 1G
    php_value post_max_size       1100M
    php_value max_file_uploads    20
    php_value max_input_time      3600
    php_value max_execution_time  300
    php_value memory_limit        256M
</IfModule>
