59 lines
1.8 KiB
Bash
59 lines
1.8 KiB
Bash
#!/bin/sh
|
|
|
|
# TODO: add all the other fallback values for the other variables
|
|
if [ -z "$MAX_UPLOAD_SIZE" ]; then
|
|
MAX_UPLOAD_SIZE="8M" # Default fallback value
|
|
echo "MAX_UPLOAD_SIZE was not set, using default value of ${MAX_UPLOAD_SIZE}"
|
|
fi
|
|
|
|
echo "Checking if upload script exists in /var/www/html"
|
|
if [ -f "/var/www/html/upload.php" ]; then
|
|
echo "Upload script was found, ignoring copy."
|
|
else
|
|
cp /tmp/upload.php /var/www/html
|
|
echo "Upload script was not found, copying it."
|
|
fi
|
|
|
|
echo "Checking if default index.html exists in /var/www/html"
|
|
if [ -f "/var/www/html/index.html" ]; then
|
|
echo "Upload script was found, ignoring copy."
|
|
else
|
|
cp /tmp/index.html /var/www/html
|
|
echo "Default index.html was not found, copying it."
|
|
fi
|
|
|
|
# Letting php know that we are running in docker
|
|
echo "env[DOCKER] = true" >> /etc/php81/php-fpm.d/www.conf
|
|
echo "clear_env = no" >> /etc/php81/php-fpm.d/www.conf
|
|
|
|
# Create the directory for PHP socket
|
|
mkdir -p /run/php
|
|
|
|
# Set php-fpm to listen on socket
|
|
touch /run/php/php.sock
|
|
sed -i 's/^listen = .*/listen = \/run\/php\/php.sock/' /etc/php81/php-fpm.d/www.conf
|
|
|
|
echo "Setting permissions for upload script"
|
|
chmod 777 /var/www/html/upload.php
|
|
|
|
echo "Setting max upload size to ${MAX_UPLOAD_SIZE}"
|
|
|
|
# Set max upload size for php
|
|
sed -i "s/^upload_max_filesize = .*/upload_max_filesize = ${MAX_UPLOAD_SIZE}/" /etc/php81/php.ini
|
|
sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php81/php.ini
|
|
|
|
# Set max upload size for nginx
|
|
sed -i "s/client_max_body_size 500M;/client_max_body_size ${MAX_UPLOAD_SIZE};/" /etc/nginx/nginx.conf
|
|
|
|
function start() {
|
|
echo "Starting PHP & Nginx"
|
|
php-fpm81 &&
|
|
chmod 777 /run/php/php.sock &&
|
|
/usr/local/sbin/nginx -g 'daemon off;'
|
|
}
|
|
|
|
# Start Nginx and retry if it fails
|
|
until start; do
|
|
echo "Nginx failed to start, retrying in 5 seconds..."
|
|
sleep 5
|
|
done |