Skip to content

Instantly share code, notes, and snippets.

@jpbarbosa
Created May 21, 2016 23:58
Show Gist options
  • Save jpbarbosa/dd1b83c1aac75eff0cde393011e77cb4 to your computer and use it in GitHub Desktop.
Save jpbarbosa/dd1b83c1aac75eff0cde393011e77cb4 to your computer and use it in GitHub Desktop.
server {
listen 81;
listen [::]:81;
root /home/forge/phpmyadmin;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ =404;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php/php7.0-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