Guest User

Untitled

a guest
Feb 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. location ~* ^/(assets|files|robots\.txt) { }
  2. location /app {
  3. try_files $uri $uri/ /app/index.php?/$request_uri;
  4. }
  5.  
  6. location ~ \.php$ {
  7. fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
  8. fastcgi_index index.php;
  9. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  10. include fastcgi_params;
  11. }
Add Comment
Please, Sign In to add comment