aboutsummaryrefslogtreecommitdiffstats
path: root/roles/nginx/files
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2017-06-14 23:24:36 +0800
committerAaron LI <aly@aaronly.me>2017-06-14 23:24:36 +0800
commit147a93b2f08d1bb62ca6946a8ddff2974e418401 (patch)
treea2454e913f15a9c1a283995e91520d0edd81efe2 /roles/nginx/files
parentd9bfda6c292c6b90eb7ba295425a74679e6d9c13 (diff)
downloaddebian-hpc-147a93b2f08d1bb62ca6946a8ddff2974e418401.tar.bz2
Add basic nginx role
Diffstat (limited to 'roles/nginx/files')
-rw-r--r--roles/nginx/files/nginx.conf33
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/*;
+}