From 147a93b2f08d1bb62ca6946a8ddff2974e418401 Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 14 Jun 2017 23:24:36 +0800 Subject: Add basic nginx role --- roles/nginx/files/nginx.conf | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 roles/nginx/files/nginx.conf (limited to 'roles/nginx/files') 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/*; +} -- cgit v1.2.2