Skip to content

Commit

Permalink
Upgrade to PHP 8.4 (#460)
Browse files Browse the repository at this point in the history
Run on PHP 8.4.

Also stop using the [deprecated](https://wiki.php.net/rfc/deprecations_php_8_4#sessionsid_length_and_sessionsid_bits_per_character) `session.sid_length` and `session.sid_bits_per_character` config options.
  • Loading branch information
spaze authored Jan 11, 2025
2 parents ea591a7 + 526b08c commit 582c462
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions app/config/common.neon
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ tracy:

session:
name: __Host-yourluckynumbers
sid_length: 64
sid_bits_per_character: 6
expiration: 14 days
use_strict_mode: true
cookie_secure: true
Expand Down
2 changes: 1 addition & 1 deletion conf/nginx/common-php.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ fastcgi_index index.php;
include fastcgi_params;
fastcgi_param HTTP_PROXY "";

fastcgi_pass unix:/run/php/php8.3-fpm-michalspacek.cz.sock;
fastcgi_pass unix:/run/php/php8.4-fpm-michalspacek.cz.sock;
2 changes: 1 addition & 1 deletion conf/php/dev-michalspacek.cz.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
user = spaze
group = spaze

listen = /run/php/php8.3-fpm-michalspacek.cz.sock
listen = /run/php/php8.4-fpm-michalspacek.cz.sock

listen.owner = www-data
listen.group = www-data
Expand Down
2 changes: 1 addition & 1 deletion conf/php/prod-michalspacek.cz.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
user = www-data
group = www-data

listen = /run/php/php8.3-fpm-michalspacek.cz.sock
listen = /run/php/php8.4-fpm-michalspacek.cz.sock

listen.owner = www-data
listen.group = www-data
Expand Down

0 comments on commit 582c462

Please sign in to comment.