Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. location /phpmyadmin {
  2. root /var/www/;
  3. index index.php index.html;
  4. }
  5. location ~ .php$ {
  6. fastcgi_pass unix:/var/run/php5-fpm.sock;
  7. fastcgi_index index.php;
  8. fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
  9. include fastcgi_params;
  10. try_files $uri /index.php;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement