Created
January 3, 2025 11:38
-
-
Save terremoth/88d0b8174ef3823365ff25f299f5803a to your computer and use it in GitHub Desktop.
Script to reconfigure and increase PHP.ini settings (FPM)
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
#!/usr/bin/env sh | |
# The FPM ini file, and not the CLI one | |
ini_file=$(php -i | grep "Loaded Configuration File" | awk -F ' => ' '{print $2}' | sed 's/cli/fpm/g') | |
echo $ini_file | |
sudo sed -i 's/memory_limit\s*=.*/memory_limit = 256M/g' $ini_file | |
cat $ini_file | grep memory_limit | |
sudo sed -i 's/upload_max_filesize\s*=.*/upload_max_filesize = 3G/g' $ini_file | |
cat $ini_file | grep upload_max_filesize | |
sudo sed -i 's/max_file_uploads\s*=.*/max_file_uploads = 300/g' $ini_file | |
cat $ini_file | grep max_file_uploads | |
sudo sed -i 's/post_max_size\s*=.*/post_max_size = 3G/g' $ini_file | |
cat $ini_file | grep post_max_size | |
sudo sed -i 's/max_input_time\s*=.*/max_input_time = 3600/g' $ini_file | |
cat $ini_file | grep max_input_time | |
echo 'Restarting Nginx and FPM' | |
sudo systemctl restart nginx | |
sudo systemctl restart php$(php -r 'echo substr(phpversion(), 0, 3);')-fpm | |
echo "Done." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment