Skip to content

Commit

Permalink
Fix fpm binary and config path in Debian 12
Browse files Browse the repository at this point in the history
  • Loading branch information
taoky committed Jul 1, 2024
1 parent e95c1fc commit a610f5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .docker/rootfs/etc/nginx/sites-available/default
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ server {
}
location /_h5ai/public/index.php {
try_files $uri =404;
fastcgi_pass unix:/run/php/php7.3-fpm.sock;
fastcgi_pass unix:/run/php/php8.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
Expand Down
2 changes: 1 addition & 1 deletion .docker/rootfs/etc/supervisor/conf.d/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ command=/usr/sbin/vsftpd /etc/vsftpd/vsftpd.conf
command=nginx -g 'daemon off;'

[program:php-fpm]
command=/usr/sbin/php-fpm7.3 --nodaemonize --fpm-config /etc/php/7.3/fpm/php-fpm.conf
command=/usr/sbin/php-fpm8.2 --nodaemonize --fpm-config /etc/php/8.2/fpm/php-fpm.conf

[program:sftp]
command=/usr/sbin/sshd -D -e
Expand Down

0 comments on commit a610f5c

Please sign in to comment.