Open binarykitchen opened 1 year ago
Sooner or later, when upgrading Nextcloud, we will have to upgrade PHP as well.
As a preparation, to make any future PHP upgrades easier, I recommend putting its version into a variable first.
For example:
server unix:/var/run/php/php8.0-fpm.sock;
Should actually come from a variable, like:
server unix:/var/run/php/php{{phpver}}-fpm.sock;
For inspiration, refer to these commits from other forks:
Again, in this ticket, make no PHP upgrades. Just have the PHP version defined in one place only.
PR is here: https://github.com/mail-in-a-box/mailinabox/pull/2308
Sooner or later, when upgrading Nextcloud, we will have to upgrade PHP as well.
As a preparation, to make any future PHP upgrades easier, I recommend putting its version into a variable first.
For example:
Should actually come from a variable, like:
For inspiration, refer to these commits from other forks:
Again, in this ticket, make no PHP upgrades. Just have the PHP version defined in one place only.