From c70b2da280eec297789b952b85492d167a1f3328 Mon Sep 17 00:00:00 2001 From: Karthik Gaekwad Date: Sun, 15 Oct 2017 18:47:36 -0500 Subject: [PATCH] Writing errors to stdout --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 901b671..7708073 100644 --- a/nginx.conf +++ b/nginx.conf @@ -5,7 +5,7 @@ events { worker_connections 1024; } http { access_log /dev/stdout; sendfile on; - access_log /etc/nginx/logs/nginx-access.log; + access_log /dev/stdout; error_log /etc/nginx/logs/nginx-error.log; server { @@ -16,4 +16,4 @@ http { location / { } } -} \ No newline at end of file +}