simple-phpfpm.nginxconf 935 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. server {
  2. listen 80;
  3. server_name DOMAIN.LTD;
  4. root /var/www/DOMAIN.LTD/app/web;
  5. index index.html index.php;
  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/www/DOMAIN.LTD/log/error.log;
  14. sendfile off;
  15. client_max_body_size 100m;
  16. location ~ \.php$ {
  17. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  18. fastcgi_pass 127.0.0.1:9000;
  19. fastcgi_index index.php;
  20. include fastcgi.conf;
  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. # website should not be displayed inside a <frame>, an <iframe> or an <object>
  30. add_header X-Frame-Options SAMEORIGIN;;
  31. }