user nginx nginx; worker_processes 1; pid /var/run/nginx.pid; events { worker_connections 2048; } http { include mime.types; default_type application/octet-stream; client_max_body_size 64M; sendfile on; tcp_nopush on; keepalive_timeout 3; gzip on; gzip_comp_level 2; gzip_proxied any; gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript; server_tokens off; include /etc/nginx/conf.d/*; }