Last active
April 13, 2021 09:21
-
-
Save trulymittal/0a0c14ccb67cf72b7f432bdbe2adb45b to your computer and use it in GitHub Desktop.
.htaccess file to be used with Docker Compose for Wordpress setup, if you want to change php limits.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# BEGIN WordPress | |
php_value memory_limit 256M | |
php_value upload_max_filesize 64M | |
php_value post_max_size 64M | |
php_value max_execution_time 300 | |
# END WordPress |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment