Skip to content

Commit 583b0dc

Browse files
committed
Specify php 8.4
1 parent 54bbb0f commit 583b0dc

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed

etc/nginx/moode-locations.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ location /imagesw/ {
1717
# PHP-FPM
1818
location ~ \.php$ {
1919
root /var/www;
20-
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
20+
fastcgi_pass unix:/run/php/php8.4-fpm.sock;
2121
fastcgi_index index.php;
2222
fastcgi_param SCRIPT_FILENAME $request_filename;
2323
include fastcgi_params;
File renamed without changes.

lib/systemd/system/localdisplay.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[Unit]
22
Description=Start Local Display
3-
After=nginx.service php8.2-fpm.service mpd.service
3+
After=nginx.service php8.4-fpm.service mpd.service
44

55
[Service]
66
Type=simple

www/daemon/watchdog.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# $1: Loop sleep time (secs)
99
if [ -z $1 ]; then WATCHDOG_SLEEP=6; else WATCHDOG_SLEEP=$1; fi
1010

11-
PHP_VER="8.2"
11+
PHP_VER="8.4"
1212

1313
# NOTE: The FPM limits are for moderating resource usage in the PHP-FPM pool
1414
FPM_MAX_LIMIT=64

www/inc/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// PHP
8-
const PHP_VER = '8.2';
8+
const PHP_VER = '8.4';
99

1010
// Log files
1111
const MOODE_LOG = '/var/log/moode.log';

0 commit comments

Comments
 (0)