default.conf 948 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. server {
  2. listen 80 default_server;
  3. root /var/www/html/d8.materio.com/public_html/web;
  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. # fastcgi_read_timeout 150;
  26. }
  27. location ~ /\.ht {
  28. deny all;
  29. }
  30. }