From 8d6df62092bcbac09b75e3564c165316fbcb4a9f Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Mon, 30 May 2016 20:23:13 -0400 Subject: [PATCH] Clean up formatting in the nginx conf a bit --- nginx/nginx.conf | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index ad31985..7e3adca 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,13 +1,13 @@ -user http; -worker_processes 4; +user http; +worker_processes 4; events { - worker_connections 1024; + worker_connections 1024; } http { - include mime.types; - default_type application/octet-stream; + include mime.types; + default_type application/octet-stream; sendfile on; tcp_nopush on; @@ -18,15 +18,15 @@ http { gzip on; gzip_disable "msie6"; - gzip_vary on; - gzip_proxied any; - gzip_comp_level 6; - gzip_buffers 16 8k; - gzip_http_version 1.1; - gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml; + gzip_vary on; + gzip_proxied any; + gzip_comp_level 6; + gzip_buffers 16 8k; + gzip_http_version 1.1; + gzip_types text/plain text/css application/json text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml; - access_log /var/log/nginx/access.log; - error_log /var/log/nginx/error.log; + access_log /var/log/nginx/access.log; + error_log /var/log/nginx/error.log; - include /etc/nginx/sites-enabled/*; + include /etc/nginx/sites-enabled/*; }