diff options
author | Aaron LI <aly@aaronly.me> | 2017-06-14 23:24:36 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-06-14 23:24:36 +0800 |
commit | 147a93b2f08d1bb62ca6946a8ddff2974e418401 (patch) | |
tree | a2454e913f15a9c1a283995e91520d0edd81efe2 /roles/nginx/files | |
parent | d9bfda6c292c6b90eb7ba295425a74679e6d9c13 (diff) | |
download | debian-hpc-147a93b2f08d1bb62ca6946a8ddff2974e418401.tar.bz2 |
Add basic nginx role
Diffstat (limited to 'roles/nginx/files')
-rw-r--r-- | roles/nginx/files/nginx.conf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/roles/nginx/files/nginx.conf b/roles/nginx/files/nginx.conf new file mode 100644 index 0000000..1ec0ea6 --- /dev/null +++ b/roles/nginx/files/nginx.conf @@ -0,0 +1,33 @@ +# +# /etc/nginx/nginx.conf +# + +user www-data; +worker_processes auto; + +events { + worker_connections 1024; +} + +http { + include /etc/nginx/mime.types; + default_type application/octet-stream; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + + server_names_hash_bucket_size 64; + types_hash_max_size 2048; + client_max_body_size 10M; + + keepalive_timeout 65; + + gzip on; + gzip_types text/css text/xml text/plain application/x-javascript application/atom+xml application/rss+xml; + + autoindex on; + index index.html index.htm; + + include /etc/nginx/sites-enabled/*; +} |