Skip to content

Instantly share code, notes, and snippets.

@masiur
Last active August 30, 2018 08:04
Show Gist options
  • Save masiur/11de124ad47d0cb626ab06488e5e97ed to your computer and use it in GitHub Desktop.
Save masiur/11de124ad47d0cb626ab06488e5e97ed to your computer and use it in GitHub Desktop.
Adminer nginx configuration
server {
listen 51;
listen [::]:51;
root /var/www/html;
index db.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
}
location ~ /\.ht {
deny all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment