Advertisement
Guest User

Untitled

a guest
Apr 19th, 2015
400
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1.  
  2. location / {
  3. root /apps/www/insidelime.cwwi.cwintra.com/html;
  4. try_files $uri $uri/ index.php /index.php$is_args$args;
  5. }
  6.  
  7. access_log "/apps/www/insidelime.cwwi.cwintra.com/logs/access.log";
  8. error_log "/apps/www/insidelime.cwwi.cwintra.com/logs/error.log";
  9.  
  10. location ~ \.php$ {
  11.  
  12. root /apps/www/insidelime.cwwi.cwintra.com/html;
  13. try_files $uri $uri/ /index.php /index.php$is_args$args$is_args$args;
  14. index index.html index.htm index.php;
  15. fastcgi_index index.php;
  16. fastcgi_param SCRIPT_FILENAME $request_filename;
  17. fastcgi_param APP_ENV prod;
  18. fastcgi_pass 127.0.0.1:9000;
  19. fastcgi_split_path_info ^(.+\.php)(/.*)$;
  20. include fastcgi_params;
  21. }
  22.  
  23. error_page 500 502 503 504 /50x.html;
  24. location = /50x.html {
  25. root /usr/share/nginx/html;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement