-
-
Save aristidesneto/a8a1ec5d0a0f12a7ee8404186149eae8 to your computer and use it in GitHub Desktop.
Configurações de desempenho do PHP
This file contains hidden or 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
| ## Configurações de desempenho do PHP | |
| # /etc/php/VERSAO_PHP/fpm/php.ini | |
| max_execution_time = 180 | |
| max_input_time = 180 | |
| memory_limit = 256M | |
| post_max_size = 128M | |
| cgi.fix_pathinfo = 0 | |
| upload_max_filesize = 128M | |
| max_file_uploads = 128 | |
| date.timezone = "America/Sao_Paulo" | |
| /etc/init.d/php7.0-fpm restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment