default.conf 881 B

12345678910111213141516171819202122232425262728293031323334353637
  1. server {
  2. listen 80 default_server;
  3. root /var/www/html;
  4. index index.html index.php;
  5. server_name *.materio.com;
  6. charset utf-8;
  7. location / {
  8. try_files $uri $uri/ /index.php?$query_string;
  9. }
  10. location = /favicon.ico { access_log off; log_not_found off; }
  11. location = /robots.txt { access_log off; log_not_found off; }
  12. access_log on;
  13. error_log /var/log/nginx/error.log error;
  14. sendfile off;
  15. client_max_body_size 100m;
  16. location ~ \.php$ {
  17. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  18. fastcgi_pass php:9000;
  19. fastcgi_index index.php;
  20. include fastcgi_params;
  21. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  22. fastcgi_intercept_errors off;
  23. fastcgi_buffer_size 16k;
  24. fastcgi_buffers 4 16k;
  25. }
  26. location ~ /\.ht {
  27. deny all;
  28. }
  29. }