Block folder access - Nginx

 location /phpmyadmin {
  deny all;
  return 403;
}

location /phpmyadmin {

  allow 192.168.1.0/24;
  deny all;
  return 403;
}

Change 'mysql_native_password' authentication

 Plugin mysql_native_password reported: ''mysql_native_password' is deprecated and will be removed in a future release. Please u...

Mais vistos