Skip to content

Instantly share code, notes, and snippets.

@azamara
Last active December 26, 2015 14:19
Show Gist options
  • Select an option

  • Save azamara/7164662 to your computer and use it in GitHub Desktop.

Select an option

Save azamara/7164662 to your computer and use it in GitHub Desktop.
nginx-phpmyadmin.conf
server {
listen 80;
server_name phpmyadmin.jnw.io;
root /home/azamara/projects/phpMyAdmin-4.0.8;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ /index.html;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
# NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
# With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment