Increasing the Server Max Upload Size

All SpinupWP servers are configured with a default maximum upload size of 64MB. However, you may increase this limit if you need to allow larger files to be uploaded via the Media Library.

Nginx

Open your server’s Nginx tab and modify the Client Max Body Size value.

For larger uploads on slow or unreliable network connections, you may also need to increase the Client Body Timeout value.

Configure Nginx Client Max Body Size

PHP

Go to the PHP tab on your site’s dashboard and modify the Upload Max File Size and Post Max Size values.

Configure PHP Upload Max File Size

To update this for all sites using the same PHP version, start by connecting to your server using a sudo user.

Open your php.ini file and modify the following values:

upload_max_filesize = 64M
post_max_size = 64M

Reload PHP for the change to take effect:

sudo service php{PHP_VERSION}-fpm reload

Repeat As Needed

Repeat for each SpinupWP server where you need to increase the maximum upload limit.