我有安装了下面东西的 VPS
Nginx,PHP 7.2.22,10.3.18-MariaDB
最近将 PHP 版本从 7.1.17 更新到 7.2.22。此后,网站运行良好。在自定义目录中设置的带密码保护的 PHPMyAdmin 不起作用。收到以下错误
发生错误。抱歉,您查找的页面目前不可用。请稍后重试。
如果您是此资源的系统管理员,那么您应该检查错误日志以了解详细信息。
您忠实的,nginx。
我的域的 Nginx 配置如下所示
server {
listen 80;
server_name domain.cc www.domain.cc;
return 301 https://$server_name$request_uri;
}
server {
server_name domain.tv w2.domain.co domain.co domain.co;
#return 301 https://domain.cc$request_uri;
rewrite ^ $scheme://domain.cc$request_uri permanent;
}
server {
listen 443 ssl;
server_name domain.cc www.domain.cc;
ssl_certificate /etc/nginx/ssl/domain.crt;
ssl_certificate_key /etc/nginx/ssl/domain.key;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
error_log /home/nginx/domain.cc/log/error.log error;
#root /usr/share/nginx/html;
root /home/nginx/domain.cc/public_html;
location / {
# root /usr/share/nginx/html;
# index index.html index.htm;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location /ScopephpAdmin {
auth_basic "Admin Login";
auth_basic_user_file /etc/nginx/.htpasswd;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/staticfiles.conf;
include /etc/nginx/conf.d/block.conf;
}
请帮我解决这个问题。