Skip to content

Instantly share code, notes, and snippets.

@GhazanfarMir
Created June 8, 2016 19:22
Show Gist options
  • Save GhazanfarMir/b35270eb07ad702413a374dc4c27a721 to your computer and use it in GitHub Desktop.
Save GhazanfarMir/b35270eb07ad702413a374dc4c27a721 to your computer and use it in GitHub Desktop.
PHPMyAdmin with NGINX
location /notphpmyadmin {
alias /usr/share/phpmyadmin;
location ~ \.php$ {
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass php;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment