Guest User

Untitled

a guest
Jan 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. server {
  2. listen 80;
  3. server_name ci-app.local;
  4.  
  5. root /home/ragnis/ci-app/www;
  6.  
  7. location / {
  8. try_files $uri index.php;
  9. }
  10.  
  11. location index.php {
  12. include /etc/nginx/fastcgi_params;
  13. keepalive_timeout 0;
  14.  
  15. fastcgi_param SCRIPT_FILENAME $document_root/index.php;
  16. fastcgi_pass 127.0.0.1:9000;
  17. }
  18.  
  19. location ~ \.(js|ico|gif|jpg|png|css)$ {
  20. # it will automatically handle static files
  21. }
  22. }
Add Comment
Please, Sign In to add comment