Skip to content

Instantly share code, notes, and snippets.

@xralphack
Created September 1, 2017 07:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xralphack/a0077d3667cea2541db18ecf6e5819da to your computer and use it in GitHub Desktop.
Save xralphack/a0077d3667cea2541db18ecf6e5819da to your computer and use it in GitHub Desktop.
phpmyadmin config for nginx
location /phpmyadmin {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/phpmyadmin/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass 127.0.0.1:9000;
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/;
}
}
location /phpMyAdmin {
rewrite ^/* /phpmyadmin last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment