mirror of https://github.com/MISP/misp-docker
17 lines
530 B
Bash
Executable File
17 lines
530 B
Bash
Executable File
#!/bin/bash
|
|
|
|
change_php_vars(){
|
|
for FILE in /etc/php/*/fpm/php.ini
|
|
do
|
|
[[ -e $FILE ]] || break
|
|
sed -i "s/memory_limit = .*/memory_limit = 2048M/" "$FILE"
|
|
sed -i "s/max_execution_time = .*/max_execution_time = 300/" "$FILE"
|
|
sed -i "s/upload_max_filesize = .*/upload_max_filesize = 50M/" "$FILE"
|
|
sed -i "s/post_max_size = .*/post_max_size = 50M/" "$FILE"
|
|
done
|
|
}
|
|
|
|
echo "Configure PHP | Change PHP values ..." && change_php_vars
|
|
echo "Starting PHP FPM"
|
|
|
|
/usr/sbin/php-fpm7.3 -R -F |