server {
listen 7535;
server_name localhost;
root /usr/share/phpmyadmin;
index index.php;
error_log /var/www/logs/pma.error.log;
access_log /var/www/logs/pma.access.log;
keepalive_timeout 1600;
location / {
try_files $uri $uri/ =404;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.1-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
service nginx restart
apt-get clean
apt-get update
apt-get upgrade
sudo fsck -y -f -v /dev/sda1