Riben

Untitled

Oct 23rd, 2021 (edited)
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. root /var/www/test/html;
  2. index index.php;
  3. error_log /var/www/test/logs/error.log;
  4. client_max_body_size 5m;
  5. client_body_timeout 60;
  6. error_page 404 /404;
  7. location / {
  8. try_files $uri $uri/ /index.php?$query_string;
  9. }
  10. location ~ \.php$ {
  11. fastcgi_pass unix:/var/run/php5-fpm.sock;
  12. fastcgi_index index.php;
  13. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  14. include fastcgi_params;
  15. }
  16. location ~* ^.+\.(jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|wav|bmp|rtf|js)$ {
  17. root /var/www/test/html;
  18. expires max;
  19.  
Add Comment
Please, Sign In to add comment