add max upload size to the env vars
This commit is contained in:
parent
559a78ca33
commit
ca2bb7deb6
@ -7,6 +7,8 @@ services:
|
|||||||
# build: .
|
# build: .
|
||||||
# image: fascinated/sharex-php-uploader
|
# image: fascinated/sharex-php-uploader
|
||||||
restart: always
|
restart: always
|
||||||
|
environment:
|
||||||
|
- MAX_UPLOAD_SIZE=500M
|
||||||
ports:
|
ports:
|
||||||
- 80:80
|
- 80:80
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -11,6 +11,13 @@ echo "Starting PHP"
|
|||||||
service php8.1-fpm start
|
service php8.1-fpm start
|
||||||
chmod 777 /run/php/php8.1-fpm.sock # I don't know how to fix this properly, but it works.
|
chmod 777 /run/php/php8.1-fpm.sock # I don't know how to fix this properly, but it works.
|
||||||
|
|
||||||
|
echo "Setting max upload size to ${MAX_UPLOAD_SIZE}"
|
||||||
|
sed -i "s/^upload_max_filesize = .*/upload_max_filesize = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini
|
||||||
|
sed -i "s/^post_max_size = .*/post_max_size = ${MAX_UPLOAD_SIZE}/" /etc/php/8.1/fpm/php.ini
|
||||||
|
|
||||||
|
# Restart php to apply changes
|
||||||
|
service php8.1-fpm restart
|
||||||
|
|
||||||
# Start Nginx
|
# Start Nginx
|
||||||
echo "Starting Nginx"
|
echo "Starting Nginx"
|
||||||
nginx -g "daemon off;"
|
nginx -g "daemon off;"
|
Loading…
Reference in New Issue
Block a user