Skip to content

Commit

Permalink
Support PHP 8.3 (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
spaze committed Nov 26, 2023
2 parents 9105b5d + 0bbd1b0 commit b2b9e04
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
steps:
- name: OS info
run: cat /etc/os-release
Expand All @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
php-version:
- "8.2"
- "8.3"
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
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 @@ -21,4 +21,4 @@ fastcgi_param HAS_SUBDOMAIN $who;
fastcgi_param CAN_HAS_BASE $can_has_base;
fastcgi_param HAS_BASE $has_base;

fastcgi_pass unix:/run/php/php8.2-fpm-canhas.report.sock;
fastcgi_pass unix:/run/php/php8.3-fpm-canhas.report.sock;
2 changes: 1 addition & 1 deletion conf/php/dev-canhas.report.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.2-fpm-canhas.report.sock
listen = /run/php/php8.3-fpm-canhas.report.sock

listen.owner = www-data
listen.group = www-data
Expand Down
2 changes: 1 addition & 1 deletion conf/php/prod-canhas.report.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.2-fpm-canhas.report.sock
listen = /run/php/php8.3-fpm-canhas.report.sock

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

0 comments on commit b2b9e04

Please sign in to comment.