PhpMyadmin 在 Ubuntu 22.04 上使用 nginx 和 Php 抛出 500

PhpMyadmin 在 Ubuntu 22.04 上使用 nginx 和 Php 抛出 500

我已尝试按照以下链接所述安装 phpmyadmin

https://thelinuxterminal.com/how-to-install-phpmyadmin-ubuntu-22-10/

我一步一步地遵循了这些步骤,但如果我从我的 ipAddress 访问该页面,则会得到 500。

我检查了 Php 是否已安装,并配置了 nginx,如下所示

location /phpmyadmin {
    root /usr/share/;
    index index.php index.html index.htm;
    location ~ ^/phpmyadmin/(.+\.php)$ {
        try_files $uri =404;
        root /usr/share/;
        fastcgi_pass unix:/run/php/php7.4-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include /etc/nginx/fastcgi_params;
    }

    location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
        root /usr/share/;
    }
}

相关内容