From 47e444501cde442de80ca35392ae5ee58fe9fbd3 Mon Sep 17 00:00:00 2001 From: Jonathan DeMasi Date: Sun, 14 Apr 2019 23:46:10 -0600 Subject: adding some confs --- nginx/nginx.conf | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 nginx/nginx.conf (limited to 'nginx/nginx.conf') diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..4dddab1 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,18 @@ +user nginx; +worker_processes 2; +error_log logs/main_error.log; +events { + worker_connections 1024; +} +http { + include mime.types; + 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"'; + access_log logs/access.log; + error_log logs/http_error.log; + sendfile on; + keepalive_timeout 65; + include sites-enabled/*; +} -- cgit v1.2.3