From f430fcc88d2f7d4c28405f5067860d2789b77b1c Mon Sep 17 00:00:00 2001 From: Bastian de Byl Date: Fri, 2 Oct 2020 22:46:03 -0400 Subject: [PATCH] ansible_fixes Cleaned up nginx.conf indentation/alignment --- ansible/roles/http/files/nginx/nginx.conf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ansible/roles/http/files/nginx/nginx.conf b/ansible/roles/http/files/nginx/nginx.conf index e0984b4..8076812 100644 --- a/ansible/roles/http/files/nginx/nginx.conf +++ b/ansible/roles/http/files/nginx/nginx.conf @@ -1,24 +1,24 @@ user http; -worker_processes 1; +worker_processes 1; load_module /usr/lib/nginx/modules/ngx_http_modsecurity_module.so; -error_log /var/log/nginx/error.log notice; +error_log /var/log/nginx/error.log notice; events { - worker_connections 1024; + worker_connections 1024; } http { include mime.types; - default_type application/octet-stream; + default_type application/octet-stream; - log_format main '$remote_addr - $remote_user [$time_local] "$request" ' - '$status $body_bytes_sent "$http_referer" ' - '"$http_user_agent" "$http_x_forwarded_for"'; + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; - access_log /var/log/nginx/access.log main; + access_log /var/log/nginx/access.log main; sendfile on; server_tokens off;