mirror of https://github.com/MISP/misp-docker
.gitignore broken, didn't actually add this file
parent
3902256c9c
commit
e7ab8db479
|
@ -0,0 +1,17 @@
|
|||
#!/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
|
Loading…
Reference in New Issue