Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- worker_processes 4;
- events {
- worker_connections 1024;
- }
- http {
- upstream php {
- server unix:/run/php-fpm/php-fpm.sock;
- }
- upstream php56 {
- server unix:/run/php56-fpm/php-fpm.sock;
- }
- include mime.types;
- default_type application/octet-stream;
- sendfile on;
- keepalive_timeout 65;
- gzip on;
- gzip_comp_level 6;
- gzip_http_version 1.1;
- gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript;
- gzip_disable "msie6";
- etag on;
- client_header_timeout 3000;
- client_body_timeout 3000;
- fastcgi_read_timeout 3000;
- client_max_body_size 32m;
- fastcgi_buffers 8 128k;
- fastcgi_buffer_size 128k;
- include vhosts.d/*;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement