Skip to content

Instantly share code, notes, and snippets.

@nahidacm
Created June 14, 2019 16:22
Show Gist options
  • Save nahidacm/75abf3d9404f95c22e0411a70e134d25 to your computer and use it in GitHub Desktop.
Save nahidacm/75abf3d9404f95c22e0411a70e134d25 to your computer and use it in GitHub Desktop.
phpmyadmin nginx server block
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.2-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/;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment