Created
January 13, 2017 23:12
-
-
Save jonathantittle/74572ade1684c32a5f892eb32c51b6da to your computer and use it in GitHub Desktop.
NGINX Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
user nginx nginx; | |
worker_processes 1; | |
worker_priority -10; | |
worker_rlimit_nofile 260000; | |
timer_resolution 100ms; | |
pcre_jit on; | |
events { | |
worker_connections 10000; | |
accept_mutex off; | |
accept_mutex_delay 200ms; | |
use epoll; | |
} | |
http { | |
map_hash_bucket_size 128; | |
map_hash_max_size 4096; | |
server_names_hash_bucket_size 128; | |
server_names_hash_max_size 2048; | |
variables_hash_max_size 2048; | |
index index.php index.html index.htm; | |
include mime.types; | |
default_type application/octet-stream; | |
charset utf-8; | |
sendfile on; | |
sendfile_max_chunk 512k; | |
tcp_nopush on; | |
tcp_nodelay on; | |
server_tokens off; | |
server_name_in_redirect off; | |
keepalive_timeout 5; | |
keepalive_requests 500; | |
lingering_time 20s; | |
lingering_timeout 5s; | |
keepalive_disable msie6; | |
gzip on; | |
gzip_vary on; | |
gzip_disable "MSIE [1-6]\."; | |
gzip_static on; | |
gzip_min_length 1400; | |
gzip_buffers 32 8k; | |
gzip_http_version 1.0; | |
gzip_comp_level 5; | |
gzip_proxied any; | |
gzip_types text/plain | |
text/css | |
text/xml | |
application/javascript | |
application/x-javascript | |
application/xml | |
application/xml+rss | |
application/ecmascript | |
application/json | |
image/svg+xml; | |
client_body_buffer_size 256k; | |
client_body_in_file_only off; | |
client_body_timeout 10s; | |
client_header_buffer_size 64k; | |
client_header_timeout 5s; | |
client_max_body_size 50m; | |
connection_pool_size 512; | |
directio 4m; | |
ignore_invalid_headers on; | |
large_client_header_buffers 8 64k; | |
output_buffers 8 256k; | |
postpone_output 1460; | |
proxy_temp_path /etc/nginx/cache/proxy; | |
request_pool_size 32k; | |
reset_timedout_connection on; | |
send_timeout 10s; | |
types_hash_max_size 2048; | |
open_file_cache max=50000 inactive=60s; | |
open_file_cache_valid 120s; | |
open_file_cache_min_uses 2; | |
open_file_cache_errors off; | |
open_log_file_cache max=10000 inactive=30s min_uses=2; | |
include /etc/nginx/sites/*.conf; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment