acrescentei no arquivo phpmyadmin.conf
<FilesMatch \.php$>
# For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
SetHandler "proxy:unix:/run/php/php8.1-fpm.sock|fcgi://localhost"
</FilesMatch>
e criei um arquivo de configuração para meu aplicativo
b2stokv5.conf
"
acrescentei no arquivo phpmyadmin.conf
<FilesMatch \.php$>
# For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
SetHandler "proxy:unix:/run/php/php8.1-fpm.sock|fcgi://localhost"
</FilesMatch>
e criei um arquivo de configuração para meu aplicativo
b2stokv5.conf
<VirtualHost *:80>
ServerAdmin
ad...@192.168.0.102 ServerName b2stokv5
DocumentRoot /var/www/html/b2stokv5
DirectoryIndex info.php
<Directory /var/www/html/b2stokv5>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
<FilesMatch \.php$>
# For Apache version 2.4.10 and above, use SetHandler to run PHP as a fastCGI process server
SetHandler "proxy:unix:/run/php/php7.4-fpm.sock|fcgi://localhost"
</FilesMatch>
ErrorLog ${APACHE_LOG_DIR}/b2stokv5.log
CustomLog ${APACHE_LOG_DIR}/b2stok.log combined
</VirtualHost>
# vim: syntax=apache ts=4 sw=4 sts=4 sr noet